Click here to Skip to main content
15,891,431 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
How to disable Remember password popup in all the browsers when logged in? I tried autocomplete="off", but it is not working fine.I need a help.
Thanks and Regards.

What I have tried:

This is my form tag:
<form id="form1"  runat="server"  method="post" class="login-form" autocomplete="off">


This is my input field:
<div class="input-group" >
               <span class="input-group-addon">class="icon_key_alt"></span>
               <asp:TextBox ID="txtPassword" runat="server" TextMode="Password" CssClass="form-control" placeholder="Password"></asp:TextBox>
           </div>
Posted
Updated 4-Apr-17 10:24am
Comments
Wessel Beulink 4-Apr-17 7:34am    
Remember password popup is client sided and not possible to disable. Why would you want to disable this? Autocomplete is never used on input type of password. Google chrome for example has it's own implementation of passwords.

P.s. also new phones with fingerprint have there own interpretation on this.
ZurdoDev 4-Apr-17 7:55am    
I suggest posting this as a solution.
Ishakkhan 4-Apr-17 7:57am    
Thanks for your comments.I mentioned autocomplete in form tag that's why i am not mentioned in input field.i am searching for the disable possibility.
Richard Deeming 4-Apr-17 8:39am    
Simple answer: Don't.

The browser's built-in password manager is there to help your users. If you were able to disable it, then you would force your users to reuse passwords, or to create simple passwords they can remember.

Don't try to make life more difficult for your users!
Ishakkhan 4-Apr-17 8:46am    
Thanks for your comments

Remember password popup is client sided and not possible to disable. Why would you want to disable this? Autocomplete is never used on input type of password. Google chrome for example has it's own implementation of passwords.

P.s. also new phones with fingerprint have there own interpretation on this.
 
Share this answer
 
Quote:
How to disable remember password popup in all the browsers when logged in?

It is a user setting, you can't change it.
 
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