up vote 2 down vote favorite
share [g+] share [fb]

We have a structure which has 3 main UpdatePanels, each of which has several nested UpdatePanels (but only one level of nesting.) All of the panels are set to conditional with ChildrenAsTriggers set to false, so it looks roughly like this:

<asp:UpdatePanel ChildrenAsTriggers="false" OnLoad="Update_OnLoad" 
    ID="updateCol2" UpdateMode="Conditional" runat="server">
    <ContentTemplate>
        <asp:UpdatePanel ChildrenAsTriggers="false" UpdateMode="Conditional" 
            ID="updateFeed" runat="server">
            <Triggers>
                <asp:AsyncPostBackTrigger ControlID="btnSubmit" EventName="Click" />
            </Triggers>
            <ContentTemplate>
                <asp:Button OnClick="function" ID="btnSubmit" runat="server" />
            <ContentTemplate>
         </asp:UpdatePanel>
    </ContentTemplate>
</asp:UpdatePanel>

I would expect that the OnLoad function of the parent update panel would never run except on the actual page load, and that the button's OnClick function would be executed on every click, updating the child updatepanel. However, the parent UpdatePanel IS updated on every click of the button, and the child update panel only fires afterward (as a result of the parent updatepanel's update.)

link|improve this question

I almost swallowed my tongue reading that title out loud ;) – Bernhof Jul 24 '09 at 15:44
Hopefully my edit made it clearer what the OP wants. – Matthew Jones Jul 24 '09 at 15:45
It killed me to write it, but I couldn't think of a better way to say it :( – pschorf Jul 24 '09 at 15:47
feedback

2 Answers

up vote 2 down vote accepted

Is the parent update panel actually updating, i.e. the contents are changing?

I would expect that the OnLoad function of the parent update panel would never run except on the actual page load

This is a false, but unfortunately common assumption. Remember that even though it's an asynchronous postback, the entire page and control lifecycle is executed for every control, including Load and Init. It's just like you were requesting the page normally.

The difference is that it's only the UpdatePanel's region of the page that would be updated, not the entire UI.

For more on how UpdatePanels work there is a great article on ASP.Net Ajax documentation site.

link|improve this answer
That explains that issue. The parent's contents are not changing, only the child's. The parent's OnLoad method is wrapped in an if(!IsPostBack) { ... } so that no damage is done. It still seems odd that the parent's OnLoad would be called but not the child's or the button's Click function. – pschorf Jul 24 '09 at 15:54
Yeah it is odd and it's a constant source of confusion and error. Glad it helped you though. If it helped to answer your problem, you should upvote the post and perhaps accept the post as the answer if you are satisfied that your issue is resolved. – womp Jul 24 '09 at 16:15
feedback

Using exactly pschorf's pasted code (one updatepanel contained in another updatepanel), its possible to not fire the parent updatepanel when the child is fired?

Firing only child updatepanel to not refreshing the entire region of the parent updatepanel, and only child updatepanel region.

Draft code example:

<UPanel1 ChildrenAsTriggers="false" UpdateMode="Conditional">    
 <UPanel2 ChildrenAsTriggers="false" UpdateMode="Conditional">    
   <asp:Button onclick="..." />    
 </UPanel2>    
 Other UPanel1's content not being refreshed after the UPanel2's button click
</UPanel1>

Thanks! (Maybe womp's post respond my answer and I misunderstood)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.