TheWizardofInt Posted August 17, 2004 Posted August 17, 2004 Windows gives a feature which lets you have it remember your log in and password. Being a normal, sane person I disable it as one of the first things I wo with a new Windows install However, some people use it. I have a 'remember my login and password' option on a login page and I want someone who has selected the Windows 'remember my login and password' to have that decision reversed, should they select my 'do not remember' option. Other than going on a cookie witch hunt, how would I do this? Quote Read the Fovean Chronicles Because you just can't spend your whole day programming!
travisowens Posted August 20, 2004 Posted August 20, 2004 I never looked into the matter but I would trust IE's password saving above a cookie. At least I know those passwords are encrypted and only accesable to your useraccount (I know I know, no security is perfect but no exploit is out that I know of). Where as a cookie is plain text and is readable by anybody with admin access over the PC. Quote Experience is something you don't get until just after the moment you needed it
TheWizardofInt Posted August 20, 2004 Author Posted August 20, 2004 The problem is that, unless I manually save the cookie, the person for whom the site is being developed wants there to be no chance for there to be an entry in the field. In HTML I would have just set the value to 0 to prevent getting that dropdown of all of the previous options and then having windows popping in a valid log in. Quote Read the Fovean Chronicles Because you just can't spend your whole day programming!
*Gurus* Derek Stone Posted August 21, 2004 *Gurus* Posted August 21, 2004 Try adding an "autocomplete" attribute to the form element, setting it to "off". This will only work in Internet Explorer. <form action="/?" method="post" autocomplete="off"> Quote Posting Guidelines
TheWizardofInt Posted August 21, 2004 Author Posted August 21, 2004 That did it - thanks SO much Quote Read the Fovean Chronicles Because you just can't spend your whole day programming!
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.