Nested UpdatePanel Behavior - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T18:58:53Zhttp://stackoverflow.com/feeds/question/936060http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/936060/nested-updatepanel-behavior1Nested UpdatePanel BehaviorAl Scher2009-06-01T18:21:57Z2009-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#13244950Answer by Adam Fox for Nested UpdatePanel BehaviorAdam Fox2009-08-24T20:15:31Z2009-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#15981170Answer by rick schott for Nested UpdatePanel Behaviorrick schott2009-10-21T00:33:58Z2009-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>