How can I ensure that __doPostBack waits for the page to fully load before sending data to the server?
Our users sometimes click on controls at the top of the page before it is completely loaded, resulting in incomplete form submissions.
I am exploring options with Sys.WebForms.PageRequestManager to possibly add an event handler or configure it in a way that checks if the page is loaded and then waits if not.
This is for an ASP.NET 3.5 application.
One solution could be to have controls call "__doPostBack_WhenLoaded" method that checks and adds the __doPostBack call to the onLoad event if necessary, but I'm hoping for a more efficient approach :).