I have a page that I need to be able to clear several textboxes. When the page initially loads the textboxes will be populated from a database so I can not use a reset button.
Currently, this is how I populate a textbox:
<input type=edit name=txtPhone value="<%=rs("phone"%>">
But, because I have used the "value" property I can not see the textbox when I try to access it by typing frmMyForm.txtPhone.value.
How should I set this up?
TIA
Nate
Currently, this is how I populate a textbox:
<input type=edit name=txtPhone value="<%=rs("phone"%>">
But, because I have used the "value" property I can not see the textbox when I try to access it by typing frmMyForm.txtPhone.value.
How should I set this up?
TIA
Nate