Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>When IE is configured to ask you the question, then it will ask or not depending on the way you submit the form.</p> <p>When submiting using an <code>input type="submit"</code> (i.e. a submit button), then IE will ask you if you want to save the password.</p> <p>If you use javascript to submit the form, like this <code>document.getElementById('Form1').submit()</code>, it will not ask you to save the password.</p> <p><strong>Try this HTML, in IE (I didn't test other browser yet):</strong></p> <ul> <li>the submit button asks you to save password</li> <li>the submit link does not ask anything</li> </ul> <p>Html code:</p> <pre><code>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&gt; &lt;html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"&gt; &lt;head id="Head1"&gt; &lt;title&gt;Home Page &lt;/title&gt; &lt;link href="Styles/Site.css" rel="stylesheet" type="text/css" /&gt; &lt;/head&gt; &lt;body&gt; &lt;form method="post" action="Default.aspx" id="Form1"&gt; &lt;div class="aspNetHidden"&gt; &lt;input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDwUJODcyMTYwNTY0ZGRfKmsji5yH9OZWyNlRsIwCOz1mu6uALjmUI+04ei8bkQ==" /&gt; &lt;/div&gt; User: &lt;input name="ctl00$BodyContent$login$UserName" type="text" id="ctl00_BodyContent_login_UserName" class="user-name"&gt; Pass: &lt;input name="ctl00$BodyContent$login$Password" type="password" id="ctl00_BodyContent_login_Password"&gt; &lt;input type="submit" value="Submit"&gt; &lt;a href="javascript:document.getElementById('Form1').submit();"&gt;submit&lt;/a&gt; &lt;/form&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>If you check the box to never ask again, then you can configure that in IE options:</p> <p><em>Tools > Internet Options > Content > AutoComplete</em></p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload