Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
6answers
846 views

Solving the Double Submission Problem

Good Morning, I would like to see how Web Developers avoid the double submission issue. So basically my understanding of the problem is as follows: Double submission occurs when an impatient user ...
7
votes
11answers
2k views

Why doesn't my form post when I disable the submit button to prevent double clicking?

Like every other web developer on the planet, I have an issue with users double clicking the submit button on my forms. My understanding is that the conventional way to handle this issue, is to ...
5
votes
3answers
197 views

Are there techniques to prevent double submissions in stateless web applications?

I want to implement double submission prevention in an existing java web application (struts actually). Architecture wise we are talking about 2 to N possible application servers (tomcat) and one ...
5
votes
5answers
3k views

Prevent double submission of forms in jQuery

I have an form that takes a little while for the server to process. I need to ensure that the user waits and does not attempt to resubmit the form by clicking the button again. I tried using the ...
5
votes
8answers
8k views

How do I stop the Back and Refresh buttons from resubmitting my form?

I am doing web development. I have a page to do with credit card, which when user click "refresh" or "Back", the transaction will be performed one more time, which is unwanted. This include Browser ...
3
votes
2answers
297 views

Disabled submit button remains Disabled if a user interrupts redirecting to a new page

I'd like to disable a submit button after it's pressed using javascript. myForm.onsubmit = function() { ... mySubmitButton.disabled = true; ... } But when a user stops opening a new page while ...
3
votes
1answer
273 views

How to prevent DoubleSubmit in a GWT application?

How to avoid Double Submit problem in a GWT application? To clarify what double submit is: When the user clicks on a submit button twice, the server will process the same POST data twice. To avoid ...
3
votes
5answers
254 views

Disabled jQuery UI Button Remains Disabled on Returning to Page

I have a JQuery UI submit button on a form when it's clicked to both prevent double-clicking and to also make it visibly clear that it was in fact clicked properly. So I use jQuery to do this: ...
3
votes
1answer
843 views

Preventing double form submissions [closed]

Exact Duplicate: How to handle multiple submissions server-side The general task at hand: preventing a double form submission in a multi-user web based application. Think financial transactions. ...
2
votes
1answer
112 views

rails: ajax avoid multiple form submit

I have an submit button and need to ensure that is only pressed/submit one time until the AJAX request is finished. The Javascript solutions are not safe in case of noScript. Is there a propper way ...
2
votes
4answers
2k views

ASP.NET MVC - How to prevent double clic submit with jquery.validate.unobtrusive lib?

I need to avoid the double click submitting behavior. I'm using the client validation with the unobtrusive library. I have the following code for avoiding the double clic: ...
1
vote
2answers
165 views

duplicate data insert in CodeIgniter

I am just inserting data in codeigniter controller part at pastebin http://pastebin.com/KBtqrAkZ public function add_product() { $this->lang->load('log_in', 'english'); ...
1
vote
4answers
149 views

double submission when refresh php

I'm trying to correct the issue of double submit in my script. When I press submit it only updates mysql once(which is what I want). However, when I hit refresh it updates mysql again. It seems to ...
1
vote
2answers
762 views

Disabling forms with javascript on submit to prevent double submit

I'd like to disable a form after it is submitted in order to prevent double submissions. Pretty standard use case I would think, but all of the examples I can find out there are flawed. Everything I ...
0
votes
3answers
61 views

Double submit after page reload

I have a following scenario: First webpage has a form which does submit to the server. Server responds with second page. The second page has a hidden form which is being submitted using javascript on ...
0
votes
2answers
120 views

jQuery Disable Enter Key after Enter Key has been hit when Enter key has already been disabled

I have disabled my enter key so that I can do an ajax submission, but I want to make sure that the form isn't submitted twice if the user hits enter twice before the response from the server comes ...
0
votes
0answers
139 views

Meta refresh and saveToken (struts)

I've got an action that takes a while, and I can't split up its functionality. So, I've implemented a "please wait" action. The action returns a jsp that uses a meta refresh tag to my ...
0
votes
0answers
89 views

How to test double submissions on grails webflows?

I have a webflow that utilizes the withForm token mentioned here. So, essentially, I have something like this: def someFlow = { ... someView { withForm { //code ...
0
votes
2answers
66 views

how to prevent this function to be executed more than 2 times in x miliseconds?

how can i prevent this to be executed twice when i get to the bottom of the scroll? if ($(window).scrollTop() == $(document).height() - $(window).height()){ last_msg_funtion(); ...
0
votes
0answers
14 views

weird experience under mod-rewrite and friendly URL

when i display som kind of object content, i update a field on database +1 and it's called clics: $update= mysql_query("UPDATE SET object SET clics = clics +1)"; wich works fine, but when i added ...
0
votes
1answer
348 views

Prevent Rails link_to_remote multiple submits w Javascript

In a Rails project I need to keep a link_to_remote from getting double-clicked. It looks like :before and :after are my only choices - they get prepended/appended to the onclick Ajax call, ...
0
votes
3answers
1k views

jquery newbie: combine validate with hidding submit button

I'm new a jQuery. I have gotten validate to work with my form (MVC 1.0 / C#) with this: <script type="text/javascript"> if (document.forms.length > 0) { document.forms[0].id = ...
0
votes
2answers
270 views

scriptaculous-like component to avoid double-submit

I'm looking for a script to prevent the user from hitting the submit button twice specially for long time background processing forms. I'd like to implement something not just functional but visually ...
0
votes
1answer
273 views

Why is JBoss Post Form sending parameters in URL?

Our JBoss form is posting the parameters in the URL instead of in the request despite being a POST form. I have confirmed that the form is post in the actual page using Firebug. Note that this is ...
0
votes
2answers
645 views

iphone facebook icon in screen grab for submission

you think putting a Facebook icon in one of your screen grab list for submission would violate the apple sdk?
0
votes
0answers
4k views

Disable “Back” & “Refresh” Button in Browser [closed]

I am doing web development. I have a page to do with credit card, which when user click "refresh" or "Back", the transaction will be performed one more time, which is unwanted. This include Browser ...
0
votes
4answers
2k views

Help with DataGrid/CheckBoxes/double submit

We have a simple datagrid. Each row has a checkbox. The checkbox is set to autopostback, and the code-behind has an event handler for the checkbox check-changed event. This all works as expected, ...