Asp – Nested UpdatePanel Behavior

ajaxasp.netasp.net-ajaxnetupdatepanel

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.

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.

Outlined, the nesting is as follows:

UpdatePanel
   Triggers
   ContentTemplate
      UpdateProgress
      Wizard
         Step #n
         UpdatePanel
            Triggers
            ContentTemplate
                   .
                   .
            /ContentTemplate
         /UpdatePanel
         /Step
                .
                .
      /Wizard
   /ContentTemplate
/UpdatePanel

Best Answer

Are you associating the UpdateProgress with your nested UpdatePanel?

Can you provide your full tags for the UpdatePanels and UpdateProgress? It would help to see if there is something obvious.

Related Topic