i have
dim temp, temp2
for i 1 to num
temp=""
temp2=""
temp=temp&"1st"&i
temp2="document.forms.form."&replace(temp," ",""
&".checked=true"
response.write(temp2)
temp2.execute
next
where 1st1, 1st2,... are checkboxes in a form named form
but when I run this I get the error
object required "document.forms.form"
any help on the subject would be greatly appreciated...
dim temp, temp2
for i 1 to num
temp=""
temp2=""
temp=temp&"1st"&i
temp2="document.forms.form."&replace(temp," ",""
response.write(temp2)
temp2.execute
next
where 1st1, 1st2,... are checkboxes in a form named form
but when I run this I get the error
object required "document.forms.form"
any help on the subject would be greatly appreciated...