Hi everyone!
I have a textbox on an ASP page that, once populated with data, needs to be disabled but still viewable (like grayed out). Any ideas out there?
Thanks in advance.
Printable View
Hi everyone!
I have a textbox on an ASP page that, once populated with data, needs to be disabled but still viewable (like grayed out). Any ideas out there?
Thanks in advance.
Set its enabled property to False ?
How do you do that on an ASP form? I know in VB it is: txttextbox1.enabled = false, but I am not sure this works in an ASP form.
Well surely you could just call a small piece of vbscript to do it for you ?
you can put it to readonly,
<input type=text name=someName readonly>
but it only works in explorer i think,
try to put a layer on top of it, it wont be reachable!!
Thanks, sebs, that was what I was looking for.