Topic: Disable button during processing
Share/Save/Bookmark
Description: This topic shows you how to disable processing of a button during processing.
Notes: This is best implemented in an UpdatePanel.

Add the following "OnClientClick" to your ASP:Button markup:

OnClientClick="this.disabled = true; this.value = 'Submitting...';"

Add the following attribute to your button markup:

UseSubmitBehavior="false"