Hello Lorena, You can not disable the AutoComplete Configuration in the Tools|Internet Options Menu by programming for security reasons. Most you can do is stop from appearing the automplete options for an input (text or password) in this way:
<INPUT TYPE = text NAME = otext AUTOCOMPLETE = "off"> <INPUT TYPE = password NAME = oPassword AUTOCOMPLETE = "off"> In addition, if you don't want users to see the AutoComplete feature for any field in a form, the AUTOCOMPLETE attribute can be used to disable the feature for the entire form. <FORM AUTOCOMPLETE = "off"> . . . </FORM> You can enable AutoComplete by setting the value of the autoComplete property to an empty string. Saludos, Gilberto =========================================================================== To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST". Some relevant FAQs on JSP/Servlets can be found at: http://archives.java.sun.com/jsp-interest.html http://java.sun.com/products/jsp/faq.html http://www.esperanto.org.nz/jsp/jspfaq.jsp http://www.jguru.com/faq/index.jsp http://www.jspinsider.com
