fark
12-11-2003, 06:53 PM
I know that in javascript
This refers to the value in the input field
document.frm1.elements[i].value
This refers to the name of the input field
document.frm1.elements[i].name
In ASP
This refers to the value in the input field
Request.Form(2)
How do I access the name of the input field?
I've tried
Request.Form(2).Name
and a bunch of other things but haven't figured it out yet. Any ideas? Thanks
This refers to the value in the input field
document.frm1.elements[i].value
This refers to the name of the input field
document.frm1.elements[i].name
In ASP
This refers to the value in the input field
Request.Form(2)
How do I access the name of the input field?
I've tried
Request.Form(2).Name
and a bunch of other things but haven't figured it out yet. Any ideas? Thanks