vote up 2 vote down star

I want to clear textbox's cache.Suppose you have logged into gmail again if you will sigout and log in, testbox for Username show an intellisense kind of thing.How to stop that ?

flag

0% accept rate

2 Answers

vote up 6 vote down
<input type="text" name="ac" autocomplete="off" />

Source: http://www.w3.org/Submission/web-forms2/

link|flag
1  
I assumed he was talking about an asp.net TextBox control... – orsogufo Sep 2 at 11:26
note that in some browsers (ie and firefox for starters) this won't clear an existing cache (but it will stop other people from ever creating the cache) – Rob Fonseca-Ensor Sep 2 at 11:26
vote up 1 vote down

You should set the AutoCompleteType property to Disabled.

Check this msdn page for details.

link|flag
Good point, I've missed the asp.net tag. – Kobi Sep 2 at 11:26

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.