ASP form HELP!
ASP form HELP!
Out of context: Reply #6
- Started
- Last post
- 7 Responses
- tfs__mag0
mitsu is correct, but i usually assign values to my check boxes... like value="yes" or value="no" rather than use the "" or "on".
on your code... is the name attribute of you checkbox set as name="checkbox" ? because the name attribute is what you need to call... so
[input type="checkbox" name="the_name" value="yes"]
you would need
[%
request("the_name")
%]