Currently we have an UpdatePanel containing a Panel as follows:
<asp:UpdatePanel ID="updatepanel" runat="server" UpdateMode="Conditional">
<ContentTemplate>
<asp:Panel ID="panel" runat="server">
</asp:Panel>
</ContentTemplate>
</asp:UpdatePanel>
We then dynamically load a custom control using LoadControl() into the Panel. To complicate matters the custom control contains its own UpdatePanel.
The problem I am facing at the moment is - how I update the inner UpdatePanel without having the outer UpdatePanel refresh? The UpdateMode is set to Conditional on both. Many thanks in advance for your help!