Help | Site Map
Connecting Tech Pros Worldwide
 
 
LinkBack Thread Tools
  #1  
Old July 20th, 2005, 06:50 PM
Hal Robertson
Guest
 
Posts: n/a
Default disabling modern browsers "remember the stuff you entered on this form?" popups

I have created a rather complicated series of html forms for a data
entry wizard

In my mozilla browser, every time I submit each form along the
process, it asks me if I want to remember the values I entered. How
do I, in HTML, tell Mozilla and other browsers with this feature to
not offer that option?

thanks

Hal
  #2  
Old July 20th, 2005, 06:50 PM
Andrew Thompson
Guest
 
Posts: n/a
Default Re: disabling modern browsers "remember the stuff you entered on this form?" popups

"Hal Robertson" ...[color=blue]
> I have created a rather complicated series of html forms for a data
> entry wizard
>
> In my mozilla browser, every time I submit each form along the
> process, it asks me if I want to remember the values I entered. How
> do I, in HTML, tell Mozilla and other browsers with this feature to
> not offer that option?[/color]

You have it the wrong way around.

_You_ the user can configure _your_ Mozilla
to not do autocomplete, if that is _your_ wish.

_Your_ HTML cannot configure _my_ Mozilla
to any extent. If it could, then..
a) _I_ would stop using Mozilla, and..
b) _I_ would not visit _your_ site.

Leave the users browser alone, but link
to a page that explains to your user how
they can configure their _own_ browser to
behave the way _they_ want it to.

I mean, if they really _want_ to 'struggle'
through your forms with autocomplete on
(I do not quite understand why you think it
is detrimental) it is their choice.

--
Andrew Thompson
* http://www.PhySci.org/ Open-source software suite
* http://www.PhySci.org/codes/ Web & IT Help
* http://www.1point1C.org/ Science & Technology


  #3  
Old July 20th, 2005, 06:50 PM
Neal
Guest
 
Posts: n/a
Default Re: disabling modern browsers "remember the stuff you entered on this form?" popups

On 25 Feb 2004 17:17:13 -0800, Hal Robertson <hal_robertson@yahoo.com>
wrote:
[color=blue]
> I have created a rather complicated series of html forms for a data
> entry wizard
>
> In my mozilla browser, every time I submit each form along the
> process, it asks me if I want to remember the values I entered. How
> do I, in HTML, tell Mozilla and other browsers with this feature to
> not offer that option?
>
> thanks
>
> Hal[/color]


You don't.

You do NOT tell the user agent what to do with the user's data. Your data
is a guest on the user's computer.
  #4  
Old July 20th, 2005, 06:50 PM
Jukka K. Korpela
Guest
 
Posts: n/a
Default Re: disabling modern browsers "remember the stuff you entered on this form?" popups

hal_robertson@yahoo.com (Hal Robertson) wrote:
[color=blue]
> I have created a rather complicated series of html forms for a data
> entry wizard[/color]

This would be easier to analyze if you had given a URL.
[color=blue]
> In my mozilla browser, every time I submit each form along the
> process, it asks me if I want to remember the values I entered.[/color]

My guess is that that the forms now have fields named the same way but
not sufficiently related to make autocomplete meaningful.

Then the answer would be to generate the forms so that the names
differ. This requires changes to form handlers, but you could e.g.
generate names like "foo-48417", "bar-48417" etc. where 48417 is some
number that depends on the form, and the form handler would just mask
the tail (hyphen and number) away before proceding. (It could also
check that the tails match, just as an extra data integrity check.)

--
Yucca, http://www.cs.tut.fi/~jkorpela/
Pages about Web authoring: http://www.cs.tut.fi/~jkorpela/www.html

  #5  
Old July 20th, 2005, 06:50 PM
JP. Baker
Guest
 
Posts: n/a
Default Re: disabling modern browsers "remember the stuff you entered on this form?" popups

In article <a8a3a7b7.0402251717.11942f5a@posting.google.com >,
Hal Robertson <hal_robertson@yahoo.com> wrote:[color=blue]
>I have created a rather complicated series of html forms for a data
>entry wizard
>
>In my mozilla browser, every time I submit each form along the
>process, it asks me if I want to remember the values I entered. How
>do I, in HTML, tell Mozilla and other browsers with this feature to
>not offer that option?[/color]

You could try adding AUTOCOMPLETE="OFF" to the form element - I know it
is proprietary but I think Mozilla supports it as well. And seeing that
you appear to be writing an intranet application...

nhoJ
--
John P Baker
  #6  
Old July 20th, 2005, 06:50 PM
Alan J. Flavell
Guest
 
Posts: n/a
Default Re: disabling modern browsers "remember the stuff you entered onthis form?" popups

On Thu, 25 Feb 2004, Hal Robertson wrote:
[color=blue]
> I have created a rather complicated series of html forms for a data
> entry wizard[/color]

*That's* your problem, right there. Work on solving the problem
you've created - don't try to add extra problems to it by trying to
tinker with your users' browsers.

  #7  
Old July 20th, 2005, 06:50 PM
kchayka
Guest
 
Posts: n/a
Default Re: disabling modern browsers "remember the stuff you entered onthis form?" popups

JP. Baker wrote:
[color=blue]
> In article <a8a3a7b7.0402251717.11942f5a@posting.google.com >,
> Hal Robertson <hal_robertson@yahoo.com> wrote:[color=green]
>>
>>In my mozilla browser, every time I submit each form along the
>>process, it asks me if I want to remember the values I entered. How
>>do I, in HTML, tell Mozilla and other browsers with this feature to
>>not offer that option?[/color]
>
> You could try adding AUTOCOMPLETE="OFF" to the form element - I know it
> is proprietary but I think Mozilla supports it as well.[/color]

mozilla does support this - it was added as the request of Wells Fargo
bank. They, and some other sites dealing with sensitive data, wouldn't
support gecko-based browsers without it.

It shouldn't be used at the whim of the author, though.

--
Reply address is a bottomless spam bucket.
Please reply to the group so everyone can share.
  #8  
Old July 20th, 2005, 06:50 PM
Hal Robertson
Guest
 
Posts: n/a
Default Re: disabling modern browsers "remember the stuff you entered on this form?" popups

thanks for this. Of course the form data is sensitive!

kchayka <usenet@c-net.us> wrote in message news:<c1nfbj$1jh10r$1@ID-224809.news.uni-berlin.de>...[color=blue]
> JP. Baker wrote:
>[color=green]
> > In article <a8a3a7b7.0402251717.11942f5a@posting.google.com >,
> > Hal Robertson <hal_robertson@yahoo.com> wrote:[color=darkred]
> >>
> >>In my mozilla browser, every time I submit each form along the
> >>process, it asks me if I want to remember the values I entered. How
> >>do I, in HTML, tell Mozilla and other browsers with this feature to
> >>not offer that option?[/color]
> >
> > You could try adding AUTOCOMPLETE="OFF" to the form element - I know it
> > is proprietary but I think Mozilla supports it as well.[/color]
>
> mozilla does support this - it was added as the request of Wells Fargo
> bank. They, and some other sites dealing with sensitive data, wouldn't
> support gecko-based browsers without it.
>
> It shouldn't be used at the whim of the author, though.[/color]
  #9  
Old July 20th, 2005, 06:50 PM
Brian
Guest
 
Posts: n/a
Default Re: disabling modern browsers "remember the stuff you entered onthis form?" popups

kchayka wrote:
[color=blue]
> JP. Baker wrote:
>[color=green]
>> You could try adding AUTOCOMPLETE="OFF" to the form element - I
>> know it is proprietary but I think Mozilla supports it as well.[/color]
>
> mozilla does support this - it was added as the request of Wells
> Fargo bank. They, and some other sites dealing with sensitive data,
> wouldn't support gecko-based browsers without it.[/color]

Quite obnoxious on the part of Wells Fargo. I wish I could override
their wishes on this matter. Well, not Wells Fargo, but any site that
blocks auto-fill.

--
Brian (remove "invalid" from my address to email me)
http://www.tsmchughs.com/
  #10  
Old July 20th, 2005, 06:50 PM
Randy Webb
Guest
 
Posts: n/a
Default Re: disabling modern browsers "remember the stuff you entered on

Brian wrote:
[color=blue]
> kchayka wrote:
>[color=green]
>> JP. Baker wrote:
>>[color=darkred]
>>> You could try adding AUTOCOMPLETE="OFF" to the form element - I
>>> know it is proprietary but I think Mozilla supports it as well.[/color]
>>
>>
>> mozilla does support this - it was added as the request of Wells
>> Fargo bank. They, and some other sites dealing with sensitive data,
>> wouldn't support gecko-based browsers without it.[/color]
>
>
> Quite obnoxious on the part of Wells Fargo. I wish I could override
> their wishes on this matter. Well, not Wells Fargo, but any site that
> blocks auto-fill.
>[/color]

So, you want to be able to go to an Internet Cafe and have it remember
all your data? Login names/passwords? I prefer the autocomplete="off"
myself.

--
Randy
Chance Favors The Prepared Mind
comp.lang.javascript FAQ - http://jibbering.com/faq/

  #11  
Old July 20th, 2005, 06:50 PM
Neal
Guest
 
Posts: n/a
Default Re: disabling modern browsers "remember the stuff you entered on

On Sat, 28 Feb 2004 10:54:03 -0500, Randy Webb <hikksnotathome@aol.com>
wrote:
[color=blue]
> Brian wrote:[color=green]
>>
>> Quite obnoxious on the part of Wells Fargo. I wish I could override
>> their wishes on this matter. Well, not Wells Fargo, but any site that
>> blocks auto-fill.
>>[/color]
>
> So, you want to be able to go to an Internet Cafe and have it remember
> all your data? Login names/passwords? I prefer the autocomplete="off"
> myself.
>[/color]

The Internet cafe can turn off these features on their browsers. In fact,
I'd imagine that if they did not, and never told you, it might be
actionable in court.
  #12  
Old July 20th, 2005, 06:50 PM
Alan J. Flavell
Guest
 
Posts: n/a
Default Re: disabling modern browsers "remember the stuff you entered on

On Sat, 28 Feb 2004, Randy Webb wrote:
[color=blue][color=green]
> > Quite obnoxious on the part of Wells Fargo. I wish I could override
> > their wishes on this matter. Well, not Wells Fargo, but any site that
> > blocks auto-fill.[/color]
>
> So, you want to be able to go to an Internet Cafe and have it remember
> all your data?[/color]

Now you're just being silly. Why would you want that decision to be
dependent on some markup *added* by the information provider?
[color=blue]
> I prefer the autocomplete="off" myself.[/color]

Then verify that your browser options are set accordingly. Don't
leave it to some proprietary optional extra in the markup.
  #13  
Old July 20th, 2005, 06:50 PM
Brian
Guest
 
Posts: n/a
Default Re: disabling modern browsers "remember the stuff you entered on

Randy Webb wrote:[color=blue]
>
> you want to be able to go to an Internet Cafe and have it remember
> all your data?[/color]

No. I want my browser, on my computer, in my apartment, to "remember" my
data.
[color=blue]
> Login names/passwords?[/color]

Yes, those too.
[color=blue]
> I prefer the autocomplete="off" myself.[/color]

My browser, Mozilla, does not force anyone to store data. It is -- as it
should be -- up to the user. Pity certain sites take away that choice.

--
Brian (remove "invalid" from my address to email me)
http://www.tsmchughs.com/
  #14  
Old July 20th, 2005, 06:51 PM
Harlan Messinger
Guest
 
Posts: n/a
Default Re: disabling modern browsers "remember the stuff you entered on

Randy Webb <hikksnotathome@aol.com> wrote:
[color=blue]
>Brian wrote:
>[color=green]
>> kchayka wrote:
>>[color=darkred]
>>> JP. Baker wrote:
>>>
>>>> You could try adding AUTOCOMPLETE="OFF" to the form element - I
>>>> know it is proprietary but I think Mozilla supports it as well.
>>>
>>>
>>> mozilla does support this - it was added as the request of Wells
>>> Fargo bank. They, and some other sites dealing with sensitive data,
>>> wouldn't support gecko-based browsers without it.[/color]
>>
>>
>> Quite obnoxious on the part of Wells Fargo. I wish I could override
>> their wishes on this matter. Well, not Wells Fargo, but any site that
>> blocks auto-fill.
>>[/color]
>
>So, you want to be able to go to an Internet Cafe and have it remember
>all your data? Login names/passwords? I prefer the autocomplete="off"
>myself.[/color]

If you don't want a browser at an Internet cafe to save your inputs,
then you'd better not be relying on the *pages* you visit to tell the
browser to discard them. You'd better make sure the *browser* is set
not to remember them.

--
Harlan Messinger
Remove the first dot from my e-mail address.
Veuillez ๔ter le premier point de mon adresse de courriel.
  #15  
Old July 20th, 2005, 06:52 PM
kchayka
Guest
 
Posts: n/a
Default Re: disabling modern browsers "remember the stuff you entered onthis form?" popups

Brian wrote:
[color=blue]
> kchayka wrote:
>[color=green]
>> JP. Baker wrote:
>>[color=darkred]
>>> You could try adding AUTOCOMPLETE="OFF" to the form element[/color]
>>
>> mozilla does support this - it was added as the request of Wells
>> Fargo bank.[/color]
>
> Quite obnoxious on the part of Wells Fargo.[/color]

I don't see it that way, but no matter.
[color=blue]
> I wish I could override
> their wishes on this matter. Well, not Wells Fargo, but any site that
> blocks auto-fill.[/color]

And you can with mozilla. Type about:config in the browser location bar
and search for "autocomplete". The particular pref shouldn't be too
hard to pick out. Double-click on it in the config list to change the
setting.

--
Reply address is a bottomless spam bucket.
Please reply to the group so everyone can share.
  #16  
Old July 20th, 2005, 06:52 PM
Neal
Guest
 
Posts: n/a
Default Re: disabling modern browsers "remember the stuff you entered on this form?" popups

On Mon, 01 Mar 2004 18:03:44 -0600, kchayka <usenet@c-net.us> wrote:
[color=blue]
> Brian wrote:[color=green]
>> I wish I could override
>> their wishes on this matter. Well, not Wells Fargo, but any site that
>> blocks auto-fill.[/color]
>
> And you can with mozilla. Type about:config in the browser location bar
> and search for "autocomplete". The particular pref shouldn't be too
> hard to pick out. Double-click on it in the config list to change the
> setting.
>[/color]

This in the documentation? If so, then they DO give a solution, and the
point has become moot.
 

Bookmarks

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

What is Bytes?

We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights. Get the best answers to your questions from over network members.
Post your question now . . .
It's fast and it's free

Popular Articles