Old Values in Web Textbox

  • Thread starter Thread starter Max Sandman
  • Start date Start date
M

Max Sandman

You know how a textbox on a web-page retains previously typed values?
How do I get rid of that? Both the capability and the history?

sandman
 
Try adding in aspx code, at the <asp:TextBox> tag manually the pair
autocomplete="off"

Hope this helps
Dan Cimpoiesu
 
autocomplete doesn't seem to be a valid attribute. I did remember
setting it as a browser option and sure enough, there it is. So I turned
it off. But it's not having any effect in IE 6 (at least not yet).
However, this won't serve my purposes. I need my web-page to be able to
force it off.

sandman
 
Back
Top