PDA

Click to See Complete Forum and Search --> : Count Checkboxes in ASP


JohnHACK
March 4th, 2004, 09:24 AM
I needs some coding in vbscript in "check.asp" to get the value how many checkboxes checked by user. My Program allowing the user to check more than one. Below coding is in index.htm.


PHP:
--------------------------------------------------------------------------------

<HTML>
<BODY>
<form action="check.asp" method="post">
Question1<br>
<input type=checkbox name=cb0><br>
<input type=checkbox name=cb0><br>
<input type=checkbox name=cb0><br>
<input type=checkbox name=cb0><br>
<input type=checkbox name=cb0><br>
<input type=submit value=Submit>
</form>
</BODY>
</HTML>

--------------------------------------------------------------------------------

Thanks...