I'm trying to write code that will disable submit button (or all submit buttons) on the page to avoid double postback.
I thought of generating my own postback javascript function (and inject postback javascript using GetPostbackEventReference
) but maybe there are some better ways to do this? Or maybe there is some other way to avoid double postbacks?
Update:
I also want to figure out the best place to call javascript, e.g. if I call following script in the onclick button handler then button's server click event won't be wired up.
$('input[type=submit]').attr('disabled', 'disabled')