Possible Duplicate:
Disable browser 'Save Password' functionality
In my application, I have a login page. Currently in firefox or IE, after giving the credentials and logging in it is asking to remember the password. Is there any way to disable this?
Just add the attribute
autocomplete="off"to the password input field.But this is really something most users like in their browser. Why do you want to disable it? I would let the users choose if they want the browser to remember it or not, rather than forcing them.