I have this piece of code:
<asp:Button runat="server" Text="Process Payment" />
When I click on button the page refreshes which is fine. But now when I press F5 on browser my click event again gets fired and I can get hit my breakpoint. Now problem is this button is contacting payment gateway in it's click event handler. Pressing refresh sends the request again to the payment gateway. Please help. What should I do?
Redirecting to the same page solves the problem. However I don't want to do that. Is there any other better alternative?
