readonly textbox in netscape navigator

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

I have a textbox, which has the attribute readonly="readonly", but when i
check my site in netscape navtigator....readonly is not working...i am able
to change the value of textbox...

this textbox contains customer name, and is used as a field to query
database...therefore very critical that no one can modify it. Any workaround
it?

Any help will be greatly appreciated!!!!

Thanks,
Shikha
 
For readonly it would just be <input type="text" name="txtBox" size="20"
readonly> You don't need readonly="readonly",
 
Hi David,

When I just put readonly, it still doesn't work...I am able to modify the
field in Netscape Navigator!
 
Try using Disabled and see if that works. Ex: <input type="text"
name="txtBox" size="20" disabled>
 
Back
Top