Click here to Skip to main content
15,895,667 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi Dudes,
I just want to know how to stop the auto complete lists in the browser,
i coded in the form tag as autocomplete="off" .but i think this is depending on the browser .
so i want to know the storage of autocomplete list in the browser to clear it permanently independent on any browser,.

thanks in advance
Kathir
Posted

NO i think it supports in a all browser look a link below

http://www.w3schools.com/tags/att_input_autocomplete.asp[^]

will give you more detail about this one check browser support section

regards ..:)
 
Share this answer
 
v2
Try like
<asp:TextBox Runat="server" ID="Textbox1" autocomplete="off"></asp:TextBox>


OR
<input type="text" name="cc" autocomplete="off" />
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900