Is there a way to prevent Google Chrome and other browsers from saving a password for a specific site? The server is ASP.NET MVC .NET4.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Try
autocomplete='off'on the input field. Browsers should respect this – but of course they don’t have to.UPDATE:
This is now part of HTML5, and according to that standard you can add
autocomplete='off'to the form tag to have it apply to all fields within the form.http://www.w3schools.com/html/html5_form_attributes.asp