Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / web / ASP.NET

Disable IE/Firefox remember password ?

4.85/5 (9 votes)
29 Mar 2011CPOL 48.7K  
Disable IE/Firefox remember password ?
Sometimes, we need to disable remember password option in Firefox/Internet Explorer. At that time, just set autocomplete="off" for password textbox.
If you set autocomplete="off", remember password option will not display.

Example:
XML
<asp:TextBox ID="TextBox1" autocomplete="off" runat="server" TextMode="Password">

License

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