Hi people
Can someone advise as to the best direction to take on putting checkboxes on my page dynamically.
I can do the actual placing on the page using a loop. This is easy. The bit Im struggling with is how to post the checked check boxes to another form to do the database update.
I have my controls in a loop like this
do while not rs.eof
..
..
..
<TD><INPUT type="checkbox" id=checkbox<%=i%> name=chkRSQuestion<%=i%>></TD>
..
loop
where i is a counter integer.
I will have several t once (10) on the screen and so how can I catch the checked boxes?
Thanks for any help
Can someone advise as to the best direction to take on putting checkboxes on my page dynamically.
I can do the actual placing on the page using a loop. This is easy. The bit Im struggling with is how to post the checked check boxes to another form to do the database update.
I have my controls in a loop like this
do while not rs.eof
..
..
..
<TD><INPUT type="checkbox" id=checkbox<%=i%> name=chkRSQuestion<%=i%>></TD>
..
loop
where i is a counter integer.
I will have several t once (10) on the screen and so how can I catch the checked boxes?
Thanks for any help