Here is my exact code:
<div id="login">
<form enctype="application/x-www-form-urlencoded"
method="post">
<input type="hidden" value="<%= Process.GetCaptcha() %>"
name="_PostBack" />
<table width="700px" cellpadding="4">
<tr><td align="left" class="usercell1a"><label
for="username" id="lbluser">User </label></td>
<td align="left" class="usercell1b"><input
name="username" id="username" type="text" class="widget" tabindex="1"
onmouseover="window.status='Enter your user name for this site.';"
style="width: 100px;" /><br/></td>
<td rowspan="3"><%= Process.GetLoginErr() %></td>
</tr>
<tr>
<td align="left" class="passwordcell1a"><label
for="password" id="lblpassword">Password </label></td>
<td align="left" class="passwordcell1b"><input
name="password" id="password" type="password" class="widget" tabindex="2"
onmouseover="window.status='Enter your password.';" style="width: 100px;"
/><br /></td>
</tr>
<tr>
<td align="left"><span id="captcha"><%=
Process.cCaptchaExp %></span></td>
<td align="left"><input name="txtCaptchaExp"
class="widget" tabindex="3" onmouseover="window.status='Enter the answer to
this expression.';" style="width: 30px;" /><br /></td>
</tr>
<tr>
<td colspan="2" align="center"><input type="submit"
value="Login" name="login" tabindex="4" onmouseover="window.status='Click
this button to login and access your desktop.';" class="widget"
style="width:100px;"/></td>
</tr>
</table>
</form>
<p id="loginnote">Note: All three items are required for logon.</p>
</div>
"VanguardLH" wrote:
> Simon White wrote:
>
> > Hi
> >
> > I created a webpage with a user name and password controls embedded in a
> > table but IE never prompts the user to save the passwords. The controls have
> > the name and id properties set to "username" and "password" respectively.
> > The password input has the type set to "password". The webpage is accessed
> > using https protocol. Can anyone explain why IE will not save the password
> > when it does for other pages? FireFox remembers the password but I cannot
> > seem to get IE to do the same. I have the preferences set to "Prompt me to
> > save passwords" so why does IE not recognize the password. It will
> > autocomplete the user name but nothing on the password.
> >
> > Thanks,
> > Simon
>
> You didn't show any code for your problematic web page. When you
> defined the input field, did you use:
>
> <input name="password" type=password ...>
>
> I happened upon http://msdn.microsoft.com/en-us/library/ms972961.aspx
> which shows the type being declared for the input control. I also went
> to Yahoo Mail's login page (using HTTPS) and looked at its code and
> found:
>
> <input name="passwd" id="passwd" value="" ... type="password" ...>
>
> I'm not HTML expert. Questions about how to code a web page probably
> aren't germane in a newsgroup that discusses the client program. There
> are HTML programming newsgroups to ask about such problems.
>