Is there a way to disable a button on a form submission in order to prevent users from submitting multiple times?
I attempted to disable the button with JavaScript using onclick, but encountered an issue where the button remained disabled if client side validation failed.
Is there a way to disable the button only after a successful form submission, rather than just when the user clicks?
Since this is an ASP.NET form, I would prefer to integrate neatly with the ASP.NET AJAX page lifecycle if feasible.