Mar072012

Disable Double Click Asp.net Button

How to Prevent Double click in Asp.net

The following snippets will prevent you from the Double click 


 Just use the below line code under page_load event:

cmdSubmit.Attributes.Add("onclick", "this.disabled=true;" + ClientScript.GetPostBackEventReference(cmdSubmit,"").ToString());

note:-  cmdSubmit should be Asp.net Button Name

2 comments :

Good article about how to Prevent Double click in Asp.net.

Thanks! Can it be done in JavaScript?

Post a Comment