Link to home
Start Free TrialLog in
Avatar of jlw011597
jlw011597Flag for United States of America

asked on

DEFEAT IE's AutoComplete feature?

We have a web application that accepts a userid and password from a form.  We learned today that
SOME configureations of IE can REMEMBER both userid and password even thru exiting of the
browser.

We don't want to be confronted with a user who accessed this application from a kiosk someplace
who then learned that the next person to use the kiosk had access to their userid and password
(they may easily leave a web page on the screen which has a link to that userid/login form page).

How can our web pages counteract this feature so that a subsequent user walking up to the kiosk
(wherever it is -- we don't have the authority to change that workstation's configuration, of course)?

All we want to do is insure that the userid/password pair is not recorded, regardless of how the
workstation's IE is configured.

We know on our OWN workstations we can defeat it by going to [START] Settings / Control Panel / Internet Options, getting the Internet Options dialog box, selecting the Content tab, clicking AutoComplete,
and unchecking the boxes there.  But how do we temporarily effect the same impact for OUR pages
only when their viewed on another organization's workstations?
ASKER CERTIFIED SOLUTION
Avatar of b1xml2
b1xml2
Flag of Australia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Or you could try this for a blanket solution.
<FORM AUTOCOMPLETE = "off">
//your form here//
</FORM>