P
Patrik
hello,
based on a client login I call a GridView that presents the appropriate
questionnaire for that person. I added three columns (template fields)
to the gridview that are radiobuttons. The client has to choose one
radiobutton per row (either YES, NO, or PERHAPS). Yes would have a
value of 1, No 2, perhaps 3.
1) I need to restrict the choice to one of the three radiobuttons ?
2) Need to insert the client's choice for every row in my table.
maybe someone could fix the general idea below or propose somethnig
else
For each row in Gridview1.rows
If (radiobutton1 = true) then result = 1
ElseIf (radiobutton1 = true) then result = 2
ElseIf (radiobutton1 = true) then result = 3
EndIf
resultrow = result
Next
Then again, i would need as many resultrow variables as there are rows,
then I would do one insert because in my final table one line is one
client and all his answers
Thanks you
based on a client login I call a GridView that presents the appropriate
questionnaire for that person. I added three columns (template fields)
to the gridview that are radiobuttons. The client has to choose one
radiobutton per row (either YES, NO, or PERHAPS). Yes would have a
value of 1, No 2, perhaps 3.
1) I need to restrict the choice to one of the three radiobuttons ?
2) Need to insert the client's choice for every row in my table.
maybe someone could fix the general idea below or propose somethnig
else
For each row in Gridview1.rows
If (radiobutton1 = true) then result = 1
ElseIf (radiobutton1 = true) then result = 2
ElseIf (radiobutton1 = true) then result = 3
EndIf
resultrow = result
Next
Then again, i would need as many resultrow variables as there are rows,
then I would do one insert because in my final table one line is one
client and all his answers
Thanks you