vote up 4 vote down star

I have a few controls that inherit from ASP.NET buttons and use 'onserverclick'.

If the user clicks twice, the button fires two server side events. How can I prevent this?

I tried setting "this.disabled='true'" after the click (in the 'onclick' attribute) via javascript, but that blocks the first postback as well.

flag

4 Answers

vote up 7 vote down check

See this example for disabling control on postback. It should help you do what you're trying to achieve.

http://encosia.com/2007/04/17/disable-a-button-control-during-postback/

link|flag
Thanks... I was missing the manual postback reference needed by that technique – Juan Manuel Sep 8 '08 at 19:14
vote up 0 vote down

You don't necessarily want to show the button disabled on postback. You want to make sure they don't accidentally submit twice. So disabling or hiding the button as a result of a server-side action is already too late in the game. By this point the 2nd request is already on it's way. You need to either do it with javascript or make sure your server side code won't run twice.

link|flag
vote up 0 vote down

Instead of hiding, what I have done is swapping buttons using javascript. Show another greyed out image on the click of the first button.

link|flag
vote up 0 vote down

Someone else said this somewhere on here a few days ago, and I concur - use javascript to simply hide the button instead of disabling it; you could show a "spinner" image in its place, which lets the user know what is going on.

link|flag
I'm not convinced that I like the idea of buttons disappearing. Unless another (disabled button) took their place. It might get confusing to the end user... no? – Rob Rolnick Sep 8 '08 at 19:06
I agree with Rob, I don't like buttons dissapearing – Juan Manuel Sep 8 '08 at 19:08

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.