473,624 Members | 2,566 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

form submits multiple times in IE only at customer site

We have a customer using our application that has a problem.
Within our app, we have a two different forms (one generates
an email, the other a fax via a webservice). When they click the
submit button, IE6 is generating the event 6 times!!! So they
end up sending 6 faxes or 6 emails. We simply cannot reproduce
this. We can't find anything wrong in our code that might cause
this, I can't find anything in MS Technet about IE bugs that
might cause this (and in any case we cant repro it in IE).
It's not the customer clicking something 6 times.

The code that submits the form is very simple:

<script>
function submitEmail() {
if(confirm("Are you sure you want to send this email?")) {
document.getEle mentById('email Form').submit() ;
window.close();
}
}

We're stumped. Has anyone encountered anything like this? I have them
installing Firefox on a test machine to see if it's IE specific but
regardless
we need to resolve this for IE since that's the platform the company is
standardized on.


Mar 15 '06 #1
6 3512
On Wed, 15 Mar 2006 20:45:41 GMT, "RobR" <no****@nospam. com> wrote:
We have a customer using our application that has a problem.
Within our app, we have a two different forms (one generates
an email, the other a fax via a webservice). When they click the
submit button, IE6 is generating the event 6 times!!! So they
end up sending 6 faxes or 6 emails. We simply cannot reproduce
this. We can't find anything wrong in our code that might cause
this, I can't find anything in MS Technet about IE bugs that
might cause this (and in any case we cant repro it in IE).
It's not the customer clicking something 6 times.

The code that submits the form is very simple:

<script>
function submitEmail() {
if(confirm("Ar e you sure you want to send this email?")) {
document.getEl ementById('emai lForm').submit( );
window.close() ;
}
}

We're stumped. Has anyone encountered anything like this? I have them
installing Firefox on a test machine to see if it's IE specific but
regardless
we need to resolve this for IE since that's the platform the company is
standardized on.


If you cannot reproduce, how can you be sure the form is being
submitted 6 times? Sounds more like a mail server issue. Also, since
you've apparently tried to reproduce in IE and were unable, that
eliminates IE as the culprit.
Mar 16 '06 #2

"Dr. Gig" <no**@nowhere.c om> wrote in message
news:je******** *************** *********@4ax.c om...
On Wed, 15 Mar 2006 20:45:41 GMT, "RobR" <no****@nospam. com> wrote:
We have a customer using our application that has a problem.
Within our app, we have a two different forms (one generates
an email, the other a fax via a webservice). When they click the
submit button, IE6 is generating the event 6 times!!! So they
end up sending 6 faxes or 6 emails. We simply cannot reproduce
this. We can't find anything wrong in our code that might cause
this, I can't find anything in MS Technet about IE bugs that
might cause this (and in any case we cant repro it in IE).
It's not the customer clicking something 6 times.

The code that submits the form is very simple:

<script>
function submitEmail() {
if(confirm("A re you sure you want to send this email?")) {
document.getE lementById('ema ilForm').submit ();
window.close( );
}
}

We're stumped. Has anyone encountered anything like this? I have them
installing Firefox on a test machine to see if it's IE specific but
regardless
we need to resolve this for IE since that's the platform the company is
standardize d on.


If you cannot reproduce, how can you be sure the form is being
submitted 6 times? Sounds more like a mail server issue. Also, since
you've apparently tried to reproduce in IE and were unable, that
eliminates IE as the culprit.


We can see in the log files that the browser is submitting the
action 6 times. Six emails are sent and 6 faxes are going out
(the two services are entirely unrelated, one is local sendmail
the other is a 3rd party webservice). We haven't eliminted
IE because there are different versions of IE6 depending on
whether you have hotfixes or service packs installed. It could
also be something unique to their environment. I'm trying
to get remote access to one of their PCs so I can replicate and
I'm also waiting to see if it happens in Firefox. I know they
aren't clicking 6 times because of timestamps, and the fact
it's happening to dozens of people 100% of the time (but
only 100% of the time to people in their office, outside
their office it's 0% of the time). VERY aggrivating!!!! I knew it
was a long shot asking here if anyone had seen anything
like this before, but I'm down to taking long shots.
Mar 16 '06 #3

"RobR" <no****@nospam. com> wrote in message
news:aaiSf.4053 $Sb.3387@trndny 08...

"Dr. Gig" <no**@nowhere.c om> wrote in message
news:je******** *************** *********@4ax.c om...
On Wed, 15 Mar 2006 20:45:41 GMT, "RobR" <no****@nospam. com> wrote:
We have a customer using our application that has a problem.
Within our app, we have a two different forms (one generates
an email, the other a fax via a webservice). When they click the
submit button, IE6 is generating the event 6 times!!! So they
end up sending 6 faxes or 6 emails. We simply cannot reproduce
this. We can't find anything wrong in our code that might cause
this, I can't find anything in MS Technet about IE bugs that
might cause this (and in any case we cant repro it in IE).
It's not the customer clicking something 6 times.

The code that submits the form is very simple:

<script>
function submitEmail() {
if(confirm(" Are you sure you want to send this email?")) {
document.get ElementById('em ailForm').submi t();
window.close ();
}
}

We're stumped. Has anyone encountered anything like this? I have them
installing Firefox on a test machine to see if it's IE specific but
regardless
we need to resolve this for IE since that's the platform the company is
standardiz ed on.


If you cannot reproduce, how can you be sure the form is being
submitted 6 times? Sounds more like a mail server issue. Also, since
you've apparently tried to reproduce in IE and were unable, that
eliminates IE as the culprit.


We can see in the log files that the browser is submitting the
action 6 times. Six emails are sent and 6 faxes are going out
(the two services are entirely unrelated, one is local sendmail
the other is a 3rd party webservice). We haven't eliminted
IE because there are different versions of IE6 depending on
whether you have hotfixes or service packs installed. It could
also be something unique to their environment. I'm trying
to get remote access to one of their PCs so I can replicate and
I'm also waiting to see if it happens in Firefox. I know they
aren't clicking 6 times because of timestamps, and the fact
it's happening to dozens of people 100% of the time (but
only 100% of the time to people in their office, outside
their office it's 0% of the time). VERY aggrivating!!!! I knew it
was a long shot asking here if anyone had seen anything
like this before, but I'm down to taking long shots.


Design your app to reject multiple submits with identical inputs?

- Oliver

Mar 17 '06 #4

"Oliver Wong" <ow***@castorte ch.com> wrote in message
news:kSzSf.940$ me6.418@clgrps1 3...

"RobR" <no****@nospam. com> wrote in message
news:aaiSf.4053 $Sb.3387@trndny 08...

"Dr. Gig" <no**@nowhere.c om> wrote in message
news:je******** *************** *********@4ax.c om...
On Wed, 15 Mar 2006 20:45:41 GMT, "RobR" <no****@nospam. com> wrote:

We have a customer using our application that has a problem.
Within our app, we have a two different forms (one generates
an email, the other a fax via a webservice). When they click the
submit button, IE6 is generating the event 6 times!!! So they
end up sending 6 faxes or 6 emails. We simply cannot reproduce
this. We can't find anything wrong in our code that might cause
this, I can't find anything in MS Technet about IE bugs that
might cause this (and in any case we cant repro it in IE).
It's not the customer clicking something 6 times.

The code that submits the form is very simple:

<script>
function submitEmail() {
if(confirm( "Are you sure you want to send this email?")) {
document.ge tElementById('e mailForm').subm it();
window.clos e();
}
}

We're stumped. Has anyone encountered anything like this? I have them
installin g Firefox on a test machine to see if it's IE specific but
regardles s
we need to resolve this for IE since that's the platform the company is
standardize d on.

If you cannot reproduce, how can you be sure the form is being
submitted 6 times? Sounds more like a mail server issue. Also, since
you've apparently tried to reproduce in IE and were unable, that
eliminates IE as the culprit.


We can see in the log files that the browser is submitting the
action 6 times. Six emails are sent and 6 faxes are going out
(the two services are entirely unrelated, one is local sendmail
the other is a 3rd party webservice). We haven't eliminted
IE because there are different versions of IE6 depending on
whether you have hotfixes or service packs installed. It could
also be something unique to their environment. I'm trying
to get remote access to one of their PCs so I can replicate and
I'm also waiting to see if it happens in Firefox. I know they
aren't clicking 6 times because of timestamps, and the fact
it's happening to dozens of people 100% of the time (but
only 100% of the time to people in their office, outside
their office it's 0% of the time). VERY aggrivating!!!! I knew it
was a long shot asking here if anyone had seen anything
like this before, but I'm down to taking long shots.


Design your app to reject multiple submits with identical inputs?

- Oliver


We designed it so the send can only be clicked once, somehow
one click is generating 6 events so there's really no way to prevent
it without figuring out why this happens.

We have to deal with it after the fact which is kind of ugly. I just
don't understand how come it's only happening to this one company,
30 different people within the company and nobody else.
Mar 17 '06 #5
On Fri, 17 Mar 2006 18:54:46 GMT, "RobR" <no****@nospam. com> wrote:

"Oliver Wong" <ow***@castorte ch.com> wrote in message
news:kSzSf.940 $me6.418@clgrps 13...

"RobR" <no****@nospam. com> wrote in message
news:aaiSf.4053 $Sb.3387@trndny 08...

"Dr. Gig" <no**@nowhere.c om> wrote in message
news:je******** *************** *********@4ax.c om...
On Wed, 15 Mar 2006 20:45:41 GMT, "RobR" <no****@nospam. com> wrote:

>We have a customer using our application that has a problem.
>Within our app, we have a two different forms (one generates
>an email, the other a fax via a webservice). When they click the
>submit button, IE6 is generating the event 6 times!!! So they
>end up sending 6 faxes or 6 emails. We simply cannot reproduce
>this. We can't find anything wrong in our code that might cause
>this, I can't find anything in MS Technet about IE bugs that
>might cause this (and in any case we cant repro it in IE).
>It's not the customer clicking something 6 times.
>
>The code that submits the form is very simple:
>
><script>
>function submitEmail() {
>if(confirm ("Are you sure you want to send this email?")) {
>document.g etElementById(' emailForm').sub mit();
>window.clo se();
>}
>}
>
>We're stumped. Has anyone encountered anything like this? I have them
>installi ng Firefox on a test machine to see if it's IE specific but
>regardle ss
>we need to resolve this for IE since that's the platform the company is
>standardiz ed on.

If you cannot reproduce, how can you be sure the form is being
submitted 6 times? Sounds more like a mail server issue. Also, since
you've apparently tried to reproduce in IE and were unable, that
eliminates IE as the culprit.

We can see in the log files that the browser is submitting the
action 6 times. Six emails are sent and 6 faxes are going out
(the two services are entirely unrelated, one is local sendmail
the other is a 3rd party webservice). We haven't eliminted
IE because there are different versions of IE6 depending on
whether you have hotfixes or service packs installed. It could
also be something unique to their environment. I'm trying
to get remote access to one of their PCs so I can replicate and
I'm also waiting to see if it happens in Firefox. I know they
aren't clicking 6 times because of timestamps, and the fact
it's happening to dozens of people 100% of the time (but
only 100% of the time to people in their office, outside
their office it's 0% of the time). VERY aggrivating!!!! I knew it
was a long shot asking here if anyone had seen anything
like this before, but I'm down to taking long shots.


Design your app to reject multiple submits with identical inputs?

- Oliver


We designed it so the send can only be clicked once, somehow
one click is generating 6 events so there's really no way to prevent
it without figuring out why this happens.

We have to deal with it after the fact which is kind of ugly. I just
don't understand how come it's only happening to this one company,
30 different people within the company and nobody else.


Rewrite in .Net. We never have these kind of problems.
Mar 18 '06 #6

"RobR" <no****@nospam. com> wrote in message news:WBDSf.18$y o1.12@trndny09. ..

"Oliver Wong" <ow***@castorte ch.com> wrote in message
news:kSzSf.940$ me6.418@clgrps1 3...

Design your app to reject multiple submits with identical inputs?


We designed it so the send can only be clicked once, somehow
one click is generating 6 events so there's really no way to prevent
it without figuring out why this happens.

We have to deal with it after the fact which is kind of ugly. I just
don't understand how come it's only happening to this one company,
30 different people within the company and nobody else.


Design it on the server side, I mean. I.e. even if your clients reverse
engineer your procotol and write their own clients to generate a billion
clicks, the server recjects multiple submits with identical inputs.

- Oliver

Mar 20 '06 #7

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

Similar topics

4
4436
by: Nomen Nescio | last post by:
can anyone be so kind as to look at http://www.mysolution.ws/HYPOCRITE.php and let me know why it isn't passing the form data to http://www.mysolution.ws/insertHYPOCRITES.php for the most part, the scripts were created with http://phpcodegenie.sourceforge.net/
1
3770
by: Display Name | last post by:
the customer I'm developing a site for uses a canned form-parsing page that allows her to have an email subscription opt-in page add emails to a list she can manage using a link that you point your HTML form to. the actual form-parsing page resides on a server that's uneditable to me since it sits on an inaccessible server. my problem is more irritating than anything; everything double-submits.. when you submit the form, I've forced a...
16
2883
by: Philippe C. Martin | last post by:
Hi, I am trying to change the data in a form field from python. The following code does not crash but has no effect as if "form" is just a copy of the original html form. Must I recreate the form order to do that ? My point is for the client to be able to re-read the modified data.
1
2462
by: Jeffrey Kelso | last post by:
I am having an issue where doing a PostBack in ASP.NET is losing the form information. This is happening in a NLB environment with two servers using Application Center When a user selects an item from a DropDownList and then clicks a submit button, the Click event on the button redirects them to the value of the selected item. This works fine if you are on Webserver1 and the button click PostBacks to Webserver1. If you are on...
3
2730
by: Mike | last post by:
Hello: I was not able to find a regular ASP group, so I posted this here instead. I have a web app which is actually just ASP using VBScript as the server-side language, running on IIS6. Users will log into the site and enter in large amounts of data in forms and submit this data to be saved to the database. Problem is, sometimes they submit the data after the session has timed out. This makes them very angry when they have just...
17
5655
by: axlq | last post by:
Situation: User submits a form, gets a page returned. User clicks the "reload button." Normal result: Browser asks to confirm re-submitting of the form data. That's not what I want. What I want is behavior like what Wikipedia does, as well as vBulletin forums and other nice php-based sites: Situation: User submits a form, gets a page returned. User clicks
14
3800
Plater
by: Plater | last post by:
I'm going to stab myself in the face. I have a page with a single form. Regular old html. There are a few checkboxes and textboxes and and two submit buttons (I hope that's not the issue...) The form submits to itself (I control the backend so I handle it) When I click the submit button, the form is submitted and I get my page back with a "form submitted" text in a certain place. As SOON as it finishes loading, it automatically submits...
8
1339
by: zadar24 | last post by:
My first post from a newbie. I have created a form where I need to pull data out of a table multiple times. The table is "Customer". The form has various other fields which work fine. The tables are already fully populated. My form looks like this: Date: Company Name:
0
8249
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8179
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
1
8348
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8493
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
6112
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4084
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4187
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2613
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
1493
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.