vote up 6 vote down star
2

I've noticed on bank websites, etc, my user IDs aren't saved (they don't appear in a dropdown like other commonly entered stuff does) and there's no prompt for it to remember your password. How is this done? How do the sites notify the browser that they are in 'special' or else exceptions? Just curious.

flag

3 Answers

vote up 6 vote down check

Usually you just need to put the autocomplete="off" into the form or field you want to block.

Keep in mind that users can get around this with a scriptlet, plugin, or grease-monkey script.

https://developer.mozilla.org/en/How_to_Turn_Off_Form_Autocompletion#Exceptions_and_Recommended_Workarounds

http://msdn.microsoft.com/en-us/library/ms533032(VS.85).aspx

link|flag
Wow, it's funny that I'd never heard of this. Thanks. – naeblis Nov 29 '08 at 21:24
vote up 0 vote down

Autocomplete behavior can be controlled at TextBox also.

As suggested in link below, use AutoCompleteType = "Disabled" to disable autocomplete for any textbox.

http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.textbox.autocompletetype.aspx

link|flag
vote up 5 vote down

Set autocomplete to off:

<input type="password" autocomplete="off" />

See also this question: http://stackoverflow.com/questions/32369/disable-browser-save-password-functionality

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.