Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 top left "Back" & "Refresh" button, "right click->Refresh/Back", press "F5" key. This is to be done on certain cgi page only, not all of them.

Can this be done using Javascript? Or any other method?

share|improve this question

9 Answers

The standard way is to do it in 3 steps.

  1. the form page submits fields to processing page
  2. processing page processes data and redirects to result page
  3. result page just displays results, reloading it won't do any harm.
share|improve this answer
6  
Also known as the Post-Redirect-Get pattern. – Rob May 8 '09 at 1:46
9  
This doesn't stop the form from being reprocessed if the user hits "Back" (if they tell their browser to resubmit) – philfreo Oct 29 '09 at 21:48
@philfreo- actually, it does prevent it. Most frameworks today will issue a "302 Moved" header, which effectively tells the browser to use the results page for the history during back-button navigation. – Caffeine Coma Oct 5 '12 at 11:42

This breaks the basic browser user experience model...users should always be able to use the Refresh and Back buttons in their browser. Recommend that you fix your page another way.

If you update your question to include the server language/platform/technology that you are using then someone might be able to suggest a solution.

share|improve this answer

The simple fact that resubmitting the form generates a duplicate transaction is worrying. You should have some sort of check to ensure each submit of form data is unique.

For example, the page which would submit the form should be given a unique ID that gets submitted with the form. The business logic should then be able to recognise that the form submitted has already been processed (as the (no longer) unique ID will be the same), so ignores the second attempt.

The 'standard way' still doesn't stop clients from clicking the back button twice... or even going back and resubmitting the form if they don't think (for whatever reason) it has been processed.

share|improve this answer

Place this code on the form page

Response.Cache.SetCacheability(HttpCacheability.NoCache);

Response.Cache.SetExpires(DateTime.Now-new TimeSpan(1,0,0));

Response.Cache.SetLastModified(DateTime.Now);

Response.Cache.SetAllowResponseInBrowserHistory(false);

share|improve this answer
What is this code supposed to do ? Expire the page when user hits back button ? – vsingh Mar 26 '10 at 15:42
1  
+1 That is c# code that will make the browser give a "Page Expired" warning if a user tries to click "Back" on their browser – Jimbo Dec 2 '10 at 7:13

You shouldn't try to "block" these actions. What you should do is make sure that nothing happends when someone "double submits" the form.

share|improve this answer

and in some browser you can“t even do that, and this is good!

share|improve this answer

The best way is to have enough session handling logic that you can recognise the 2nd (and onwards) attempt as "this is just a re-submission" and ignore it.

share|improve this answer
  1. generate a random string and store it in session,

  2. then output it to your form as a hidden value,

  3. check the submitted and store variable, if matches process your request,

  4. go to 1.

share|improve this answer

vartec:s solution solves the reload-problem, not the back-problem, so here are a solution to that:

  1. The form page sets a session variable, for example session("fromformpage")=1
  2. The processing page check the session variable, if its ="1" then process data and redirect to result page if any other than ="1" then just redirect to result page.
  3. The result page sets the session variable to "".

Then if the user is pressing back button, the processing page will not do the process again, only redirect to process page.

share|improve this answer
2  
Back button wouldn't take you to processing page anyways. It'll take you directly to form page. – vartec Mar 20 '09 at 9:44
still, its a problem that has to be taken care of. – Stefan Mar 20 '09 at 10:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.