vote up 1 vote down star
2

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

flag

71% accept rate
How do the update panels relate to each other? That is, is one nested inside the other? What is the ChildrenAsTriggers setting set to on each? – drs9222 Jul 24 at 23:17
they are not relate each other nor nested..... – Muhammad Akhtar Jul 25 at 6:13
Just you can test it himself by doing test page.... like... – Muhammad Akhtar Jul 25 at 6:14
Add 2 update panel on page, set updatemode='conditional' for both and add load event for both updatepanel and set breakpoint for both load event and add 1 button and then add Asyn trigger for button click on 1 update panel.... you will notice when you hit button, it should load only triggered update panel and 2nd one remain unchanged, but 2nd updatepanel is load event also fired... – Muhammad Akhtar Jul 26 at 11:35

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.