I've got a textbox control on the webpage that I'm writing, and I need to set the value of the textbox in ASP...how is this done? I've tried document.tbUID.text but that doesn't work...what's the correct syntax? Thanks...
Printable View
I've got a textbox control on the webpage that I'm writing, and I need to set the value of the textbox in ASP...how is this done? I've tried document.tbUID.text but that doesn't work...what's the correct syntax? Thanks...
If you mean a text input, then you set the .value property.
window.document.all.tbUID.value = "something"