In my ASP.NET application...
I was looking at stopping users double submitting a form by having a token in a hidden field that is compared to a value at the server.
In terms of storing the token at the server side I am not using Session state and the only other place would be the database which I'd rather avoid. Is there anywhere else I couldstore this?
You may use
UseSubmitBehavior="false"to prevent double form-submission. An example for a button :