asp.net - IE not offering to save passwords on my login page -


I am developing a basic login page in asp.net. The page includes an email field, password field, and a submit button. For some reasons, Internet Explorer does not offer to remember login information, while other browsers such as Firefox & amp; Chrome for other pages (Gmail, Twitter, etc.) IE ALS offers to remember password Please note that I am not using the username that I previously told from IE that do not remember passwords.

Actually, how IE recognizes a login page, and why does not it recognize me?

Thank you

& lt; A & gt; Instead of & lt; Input type = "submit" & gt; . But the form was not developed under ASP.Net (which I do not know).

The problem was solved for the following article:

The article discusses with main projections. In the case of "Remember password" dialogue, in that case my case number 5 Was there. Before submitting, I automatically put the save () method and IE started to display the dialogue. Speaking Briefly, the wrong form code was:

  & lt; Form action = 'javascript: zero (0)' method = 'post' id = "form_id" & gt; & Lt; Input type = "text" id = "login_text" /> & Lt; Br / & gt; & Lt; Input type = "password" id = "password" / & gt; & Lt; Br / & gt; & Lt; A href = "#" onclick = "submit ()" & gt; Login & lt; / A & gt; & Lt; Form / & gt;  

was the correct one:

   & Lt; Br / & gt; & Lt; Input type = "password" id = "password" / & gt; & Lt; Br / & gt; & Lt; A href = "#" onclick = "window.external.AutoCompleteSaveForm (document.getElementById ('form_id')); document getElementById ('form_id'). Submit ();" & Gt; Login & lt; / A & gt; & Lt; Form / & gt; 


Comments