How to prevent replay attacks or multiple postbacks using Nonce Key in MVC 2.0
I am looking for a low level implementaion solution for this. It does not have to be a complete one, but any examples of having used Nonce keys for this purpose in an action filter would be welcomed.
The idea is to stop multiple form submissions by user via multiple button press or enter key hits. I allready have a JavaScript solution for this but I am looking for a generic server side option now.
My Question is based on the solution offered here: What methods are available to stop multiple postbacks of a form in ASP.NET MVC?