insert into [table](Question1,Question2,Question3) Values(Radiobuttonlist1.SelectedValue, RadioButtonlist2.SelectedValue, RadioButtonList3.SelectedValue).
Okay, survey has 82 questions and there are 82 radiobuttonlist to answer each question.
How do I loop through Questions field and insert the radiobuttonlist answer like;
Dim i as integer
for i = 1 through 82
insert into [table](Questions & i) Values(Radiobuttolist & i.SelectedValue)
Next i.
By the way I am doing this in C# so i++, kind of counter.
Thanks,
Ben