> So it really does seem to be that third input box that is causing the
problem, and I'm not sure how to work around it.
Try using autocomplete="off" with the password field?
http://msdn.microsoft.com/en-us/libr...86(VS.85).aspx
---
<parrish.richard@gmail.com> wrote in message news:9157dc80-80cf-4475-8b83-694db8ec46bc@l33g2000pri.googlegroups.com...
On Nov 3, 3:30pm, parrish.rich...@gmail.com wrote:
> > Did your testing include cases such as:
> > 1. No AutoComplete for form data (e.g. uncheck that option)
> > 2. or first visit to site (so no form data even if not #1)
> > Tip: use PSPV (from NirSoft) to check if there is any
> > saved form data from the site.
>
> Thanks for the response. Yes, our testing did include those cases
> tested on about a dozen different machines (some had visited the site
> many times before, some had never visited the site at all). We
> weren't able to get any of them to show the "Do you want internet
> explorer to remember this password?" prompt, until we removed the 3rd
> text box, at which point we were able to get them all to show the
> prompt.
>
> And I hadn't tried PSPV, but I had tried IE PassView without any luck
> (no entries for the sites in question at all).
I just realized that I could write a simple test to confirm my
findings. I'm not sure how well this will paste, but here is some
HTML for a very basic form:
<html>
<head>
<title>Test</title>
</head>
<body>
<form method="post" action="http://127.0.0.1">
First Box: <input type="text" name="txtUsername"><br />
Second Box: <input type="password" name="txtPassword"><br />
Third Box: <input type="text" name="txtExtraBox"><br />
<input type="submit" name="cmdSubmit" value="Login">
</form>
</body>
</html>
I loaded that up in IE, filled out the username and password, hit
Login, and did not receive a prompt offering to remember my login.
So I removed the Third Box line, reloaded the page and hit the button
again, and this time I was prompted as expected.
So it really does seem to be that third input box that is causing the
problem, and I'm not sure how to work around it.