I have an AJAX problem. There are some button on the ASP.NET page that I think gets disabled and re-enabled on a postback, which needs to be done for other reasons. There are 2 dropdown menus inside an updatepanel that will use the AJAX. The first dropdown menu updates the second one. There is a client side onblur
on the first dropdown that calls the __doPostBack
and the server call to the onselectedindexchanged
event handler is called if something changed in the dropdown list. The problem is if the client onblur
event happens too quickly it seems like the postback happens too fast and the buttons stay disabled.
For example, this happens if the user tabs through the dropdown list quickly. I've read that this is an AJAX issue if the server response is a little slow and the partial rendering messes things up.
Does anyone have a solution for this?