So basically I have a standard form/C# combo, but some of my C# functions take a good while to complete. During that time, I don't want my site's user to be able to keep spamming different form submissions (my most common function is on a listbox's selectedindexchanged
event) before the page has reloaded with the new data. I know I'll need javascript, but adding an
onchange="javascript:this.disabled=false"
event handler to my form will prevent me from using any of the form data on server side. I was thinking some kind of wait process while the postback was occuring and disabling the form after that, but I haven't been able to make that work. Any help would
be much appreciated.
Go to the complete details ...