Topic: Disable button during processing
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"