AutoComplete field and IE

Posted by user102533 on Stack Overflow See other posts from Stack Overflow or by user102533
Published on 2010-01-15T20:01:39Z Indexed on 2010/05/30 5:02 UTC
Read the original article Hit count: 205

My web page does not have the autocomplete attribute that would tell browsers not to autocomplete the field. In spite of not having this attribute, IE 8 or Safari (not sure on other browsers) does not autocomplete the page.

Autocomplete does work on some sites (such as Gmail) so I am assuming that the browser setting is not causing it?

Here's the code:

      <tr>
        <td>User Id</td>
        <td><input name="userId" type="text" id="userId" runat="server" /></td>
      </tr>
      <tr>
        <td>Password</td>
        <td><input name="password" type="password" id="password" enableviewstate="false" runat="server" /></td>
      </tr>

© Stack Overflow or respective owner

Related posts about html

Related posts about internet-explorer