I am spitting out some info into checkboxes. Something like this:
Dim arrMyArray(5)
Dim i
Document.Write "<form name=form1>"
For i = 0 To 5
Document.Write "<input type=checkbox name=somename value=" & _
i & ">" & i & "<br>"
Next
Document.Write "</form>"
I am having a hard time calling this to see if the checkboxes are checked or
not. Does anyone know how I call this to tell me if the checkbox with
"value=1" is checked? Thanks in advance for replies.

-Steven-