473,386 Members | 1,654 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

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
Jul 20 '05 #1
15 2611
"Hal Robertson" ...
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?


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
Jul 20 '05 #2
On 25 Feb 2004 17:17:13 -0800, Hal Robertson <ha***********@yahoo.com>
wrote:
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

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.
Jul 20 '05 #3
ha***********@yahoo.com (Hal Robertson) wrote:
I have created a rather complicated series of html forms for a data
entry wizard
This would be easier to analyze if you had given a URL.
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.


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

Jul 20 '05 #4
In article <a8**************************@posting.google.com >,
Hal Robertson <ha***********@yahoo.com> wrote:
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?


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
Jul 20 '05 #5
On Thu, 25 Feb 2004, Hal Robertson wrote:
I have created a rather complicated series of html forms for a data
entry wizard


*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.

Jul 20 '05 #6
JP. Baker wrote:
In article <a8**************************@posting.google.com >,
Hal Robertson <ha***********@yahoo.com> wrote:

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?


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.

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.
Jul 20 '05 #7
thanks for this. Of course the form data is sensitive!

kchayka <us****@c-net.us> wrote in message news:<c1*************@ID-224809.news.uni-berlin.de>...
JP. Baker wrote:
In article <a8**************************@posting.google.com >,
Hal Robertson <ha***********@yahoo.com> wrote:

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?


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.

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

Jul 20 '05 #8
kchayka wrote:
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.


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/
Jul 20 '05 #9
Brian wrote:
kchayka wrote:
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.

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.


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/

Jul 20 '05 #10
On Sat, 28 Feb 2004 10:54:03 -0500, Randy Webb <hi************@aol.com>
wrote:
Brian wrote:

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.


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.


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.
Jul 20 '05 #11
On Sat, 28 Feb 2004, Randy Webb wrote:
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.
So, you want to be able to go to an Internet Cafe and have it remember
all your data?


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


Then verify that your browser options are set accordingly. Don't
leave it to some proprietary optional extra in the markup.
Jul 20 '05 #12
Randy Webb wrote:

you want to be able to go to an Internet Cafe and have it remember
all your data?
No. I want my browser, on my computer, in my apartment, to "remember" my
data.
Login names/passwords?
Yes, those too.
I prefer the autocomplete="off" myself.


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/
Jul 20 '05 #13
Randy Webb <hi************@aol.com> wrote:
Brian wrote:
kchayka wrote:
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.

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.


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.


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.
Jul 20 '05 #14
Brian wrote:
kchayka wrote:
JP. Baker wrote:
You could try adding AUTOCOMPLETE="OFF" to the form element
mozilla does support this - it was added as the request of Wells
Fargo bank.


Quite obnoxious on the part of Wells Fargo.


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


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.
Jul 20 '05 #15
On Mon, 01 Mar 2004 18:03:44 -0600, kchayka <us****@c-net.us> wrote:
Brian wrote:
I wish I could override
their wishes on this matter. Well, not Wells Fargo, but any site that
blocks auto-fill.


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.


This in the documentation? If so, then they DO give a solution, and the
point has become moot.
Jul 20 '05 #16

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: laredotornado | last post by:
Hello, I have a simple login script. I have the pages login.php login_response.php login_success.php login_failure.php What I want to do is have a checkbox on the login.php page where if...
9
by: Mike Von Stein | last post by:
Maybe I'm missing something obvious, but if I several MDB's that use the same secure workgroup MDW file and the user logs into one of them is there a way through code that I can open other...
2
by: dm1608 | last post by:
I have to issues: 1) Does anyone know of a programmatic way I can disable all textboxes, combo, listboxes, and buttons on a form? 2) What is the best practice for disabling multiple controls...
11
by: shankwheat | last post by:
I have a function which passes text from txtdebt to debtsbox which works fine. However, I want to add code which examines the value of debtsbox and if any of the values the user entered contain the...
2
by: André | last post by:
Hi, When clicking on "remember me" when logging, the user asks for not to have to log in next time he visits the site. Now, on one side, i read it is recommended to logout properly (clicking...
1
by: =?Utf-8?B?QW1pciBUb2hpZGk=?= | last post by:
Hello The site I am working on redirects the user to a "session timed out" page when: - the user's session has expired AND - the user action results in a postback to the server I then...
4
by: adam.dmsk | last post by:
Hello, I have Login.aspx page with Login control. I found that "Remember me" checkbox does not work. I found that probably this is not matter of timeout attribute in web.config, becouse when...
1
by: bh | last post by:
I am using a built-in login control on a form, and have set the "DisplayRememberMe" property to false. It correctly does not display that checkbox on the login form; however, after...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.