yeasir007

Monday, October 15, 2012

How to prevent repeated postback in c# asp.net due to button click.



How to prevent repeated postback in c# asp.net due to button click.

We have all seen the websites that disable "submit" buttons when you click on them. This is often done to prevent users from clicking the button multiple times. Normally this is accomplished using an 'onclick' JavaScript event to disable the button. In ASP.NET, each server side item already has a onclick event handler which calls the server back for event processing. To accomplish the same thing in ASP.NET, you could easily do:
btnSubmit.Attributes.Add("onclick", "this.disabled=true;" + GetPostBackEventReference(btnSubmit).ToString());

Where 'btnSubmit' is the name of the button in question. What happens here is we create an onclick event that does two things. Firstly, it disables the button in the users browser. The second thing it does is submit the normal postback event to the server.


No comments:

Post a Comment

Thanks for your comments