I'm having some problems with the server side and client events on my web form. What I found is that client side events fire before server events. This is problematic for me because I have a jquery function that clears the form when it's submitted but the form is cleared before my server side event has fired so I wind up with a blank record in my database.
How can I get around this problme?
The other question I have is whether there are any good resources or books that go in depth on the interaction between ASP.NET and client side scripting that would cover issues such as what I'm experiencing?
Thanks