Hi!
I have a .NET application that access methods located on handlers through AJAX calls. This AJAX calls are fired, generally, when the user clicks on certain buttons. My problem happens when the user clicks the buttons more than once. It messes up with all my object´s state.
How do u take care of it? I know I can block the user click until the first call finishes, but I would like to find a solution to take care of this matter in the server side. Any idea?
Thanks!