• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

ASP and Form Elements Question

Quad

Golden Member
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! 🙂
 
Back
Top