I have scenario, I have two update panels on the page (both have update mode='conditional'). If I update one update panel the other is automatically updated. This is first problem.
I am using UpdatePanelAnimationExtender. If one update panel is updated, that don’t have updatepanelAnimationExtender other one also updated and that have updatepanelAnimationExtender, OnUpdatingUpdatePanel(); event is fired. As the documentation of updatepanelAnimationExtender says: http://www.asp.net/AJAX/AjaxControlToolkit/Samples/UpdatePanelAnimation/UpdatePanelAnimation.aspx
OnUpdating - Generic animation played as when any UpdatePanel
begins updating
OnUpdated - Generic animation played after the UpdatePanel
has finished updating (but only if the UpdatePanel
was changed)
Problem: OnUpdating
fired and it worked backend and not finished because onUpdated
only fired when an UpdatePanel
Changed