Multiple input box insert - Help

liunx

Guest
Hello Guys,

Is there a way i can insert to database, multiple input box? this is what I want

Math - [ input_box grade_math ] 'grade ex is 80
English - [ input_box grade_english ]
Ethics - [ input_box grade_ethics ]
Physics - [ input_box grade_physics ]

I want to loop this to insert to database.. just give me an idea using "vb .net asp"
:confused:

sorry for my englishDim Cols As String[] = (txt_math.value, txt_science.value, ... )

For I = 0 to N
....
...
.... SqlParameter.Value = Cols(I)

Next

I just like to share this :rolleyes:
 
Back
Top