Hi,
I have a dynamic radio button but I am having problem getting the values of my counter. Insead of it giving the values between 1-5 it gives me the value on no matter which radio button is selected.Can anyone tell me what the problem is . The code is below
Response.Write"<table border=0 width=470 valign=top><tr><td align=right> 1 2 3 4 5 <br></td></tr></table>"
Do while not oRSc.EOF
response.Write"<table border=0 width=470 valign=top colspan=2><tr><td valign=top>"
Response.Write oRSc("Selection") &"</td><td align=right>"
For scorecounter = 1 to 5
Response.Write "<input type=radio name="& Strtype & "." & oRSc("id") & "value=" & CStr(scorecounter) &">"
Next
Response.Write"</td></tr></table>"
oRSc.Movenext
loop
Thanks for all your help JJ
I have a dynamic radio button but I am having problem getting the values of my counter. Insead of it giving the values between 1-5 it gives me the value on no matter which radio button is selected.Can anyone tell me what the problem is . The code is below
Response.Write"<table border=0 width=470 valign=top><tr><td align=right> 1 2 3 4 5 <br></td></tr></table>"
Do while not oRSc.EOF
response.Write"<table border=0 width=470 valign=top colspan=2><tr><td valign=top>"
Response.Write oRSc("Selection") &"</td><td align=right>"
For scorecounter = 1 to 5
Response.Write "<input type=radio name="& Strtype & "." & oRSc("id") & "value=" & CStr(scorecounter) &">"
Next
Response.Write"</td></tr></table>"
oRSc.Movenext
loop
Thanks for all your help JJ