<form name="form1" method="post" action="page.asp">
<input type="checkbox" name="checkbox" value="1">
<input type="checkbox" name="checkbox" value="2">
<input type="checkbox" name="checkbox" value="3">
</form>
--Page.asp--
chkCnt=request.form("checkbox").count
response.write "Number of boxes checked: "&chkCnt&"<BR>"
i=1
if chkCnt > 0 then
do while i <=chkCnt
response.write request.form("checkbox")(i) & "check value<BR>"
i=i+1
loop
end if
Earl
www.jhdesigninc.com