What's the best way to prevent a user from making duplicate credit card transactions? Be it by clicking the submit button too many times, or by navigating back from the receipt page and clicking the submit button again.
|
1
|
|||
|
|
|
Add some sort of synchronization mechanism to your back-end system so that only one thread may be processing 'to be charged' records into your underlying datasource at any one point in time. Inside this synchronized region, add a check to ensure that the charge that is about to be processed does not already exist in the datasource. If such an error does occur, make sure to output some sort of graceful message to the customer - at least it won't be fatal on the back end. It also helps to add a 2nd layer of protection at the UI level, as suggested by CodeToGlory. This will minimize the number of times that this occurs. |
||
|
|
|
|
You could generate a unique value, and put it in a hidden form. Before you charge the credit card make sure this unique value has not been processed already. This coupled with CodeToGlory's suggestion of disabling the button should resolve both of your use cases. |
||
|
|
|
|
Couple of ways:
|
||||||||
|
|
|
Most banks require that you provide unique order ID, so there is no way of charging twice for the same order. Now, if you're asking for prevention of duplicate submit, the standard way is the Post/Redirect/Get pattern. You might also combine that with deactivating submit button with JavaScript. You'd have:
Now, if user clicks reload, only reloads static |
|||
|
|
|
Remove the basket items as soon as they ordered and disable the submit button. In this case even if the user comes back, refresh etc. can't buy twice since there will be nothing in the basket to buy. |
||
|
|
