Hi,
say I have a checkbox called "Send" in a form called "form1"
<form name="form1">
<input type="checkbox" name="send" checked>
</form>
I know that I can access this checkbox's "checked" property via "document.form1.send.checked" in DHTML.
But how can I get its value in ASP without submitting the form? Ultimately, I'd like to be able to retrieve other attributes as well, such as "type" and "value"
Thanks in advance! 🙂
say I have a checkbox called "Send" in a form called "form1"
<form name="form1">
<input type="checkbox" name="send" checked>
</form>
I know that I can access this checkbox's "checked" property via "document.form1.send.checked" in DHTML.
But how can I get its value in ASP without submitting the form? Ultimately, I'd like to be able to retrieve other attributes as well, such as "type" and "value"
Thanks in advance! 🙂