Nested UpdatePanel Behavior - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T18:58:53Z http://stackoverflow.com/feeds/question/936060 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/936060/nested-updatepanel-behavior 1 Nested UpdatePanel Behavior Al Scher 2009-06-01T18:21:57Z 2009-10-21T00:33:58Z <p>I am using a Wizard control in an UpdatePanel. Some of the Wizard Steps have UpdatePanels nested inside. Both the outer and inner UpdatePanels have their own Trigger collection. All of the events fire as intended. </p> <p>However, the triggers for the outer UpdatePanel do not set off the UpdateProgress control. The inner ones all do. I'm stumped as to why I can't get the outer Triggers to show the ProgressTemplate. It's for some ImageButtons that navigate the Wizard Steps.</p> <p>Outlined, the nesting is as follows:</p> <pre> UpdatePanel Triggers ContentTemplate UpdateProgress Wizard Step #n UpdatePanel Triggers ContentTemplate . . /ContentTemplate /UpdatePanel /Step . . /Wizard /ContentTemplate /UpdatePanel </pre> http://stackoverflow.com/questions/936060/nested-updatepanel-behavior/1324495#1324495 0 Answer by Adam Fox for Nested UpdatePanel Behavior Adam Fox 2009-08-24T20:15:31Z 2009-08-24T20:15:31Z <p>Are you associating the UpdateProgress with your nested UpdatePanel?</p> <p>Can you provide your full tags for the UpdatePanels and UpdateProgress? It would help to see if there is something obvious.</p> http://stackoverflow.com/questions/936060/nested-updatepanel-behavior/1598117#1598117 0 Answer by rick schott for Nested UpdatePanel Behavior rick schott 2009-10-21T00:33:58Z 2009-10-21T00:33:58Z <p>Your <a href="http://www.asp.net/Ajax/Documentation/Live/overview/UpdateProgressOverview.aspx" rel="nofollow">UpdateProgress</a> needs to be outside your outermost UpdatePanel and do not associate it with any specific UpdatePanel.</p> <blockquote> <p>You associate an UpdateProgress control with an UpdatePanel control by setting the AssociatedUpdatePanelID property of the UpdateProgress control. When a postback event originates from an UpdatePanel control, any associated UpdateProgress controls are displayed. If you do not associate the UpdateProgress control with a specific UpdatePanel control, the UpdateProgress control displays progress for any asynchronous postback.</p> <p>If the ChildrenAsTriggers property of a UpdatePanel control is set to false and an asynchronous postback originates from inside that UpdatePanel control, any associated UpdateProgress controls will be displayed.</p> </blockquote>