Hi,
i wrote a page like follows:
<asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager>
<asp:UpdatePanel ID="pnlUpdate" runat="server">
<ContentTemplate>
<ComponentArt:Splitter runat="server" id="Splitter1" FillWidth="true" FillHeight="true" ImagesBaseUrl="images/" >
<Layouts>
<ComponentArt:SplitterLayout>
<Panes Orientation="Horizontal" SplitterBarCollapseImageUrl="splitter_horCol.gif" SplitterBarCollapseHoverImageUrl="splitter_horColHover.gif" SplitterBarExpandImageUrl="splitter_horExp.gif" SplitterBarExpandHoverImageUrl="splitter_horExpHover.gif" SplitterBarCollapseImageWidth="5" SplitterBarCollapseImageHeight="116" SplitterBarCssClass="HorizontalSplitterBar" SplitterBarCollapsedCssClass="CollapsedHorizontalSplitterBar" SplitterBarActiveCssClass="ActiveSplitterBar" SplitterBarWidth="5">
<ComponentArt:SplitterPane PaneContentId="ChartingContent" Width="30%" Height="100%" MinWidth="100" CssClass="SplitterPane" AllowScrolling="true" />
<ComponentArt:SplitterPane PaneContentId="TelligentContent" Width="70%" Height="100%" MinWidth="100" CssClass="SplitterPane" AllowScrolling="true" />
</Panes>
</ComponentArt:SplitterLayout>
</Layouts>
<Content>
<ComponentArt:SplitterPaneContent id="ChartingContent">
<!--some controls-->
</ComponentArt:SplitterPaneContent>
<ComponentArt:SplitterPaneContent id="TelligentContent" Width="95%">
<iframe id="dynamicalPage" runat="server" width="100%" height="100%" frameborder="0" ></iframe>
</ComponentArt:SplitterPaneContent>
</Content>
</ComponentArt:Splitter>
</ContentTemplate>
</asp:UpdatePanel>
and in the iframe there is a page dynamicalPage.aspx
this dynamicalPage.apsx will dynamically load usercontrols to a panel like follows:
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<asp:Panel ID="PanelControls" runat="server">
</asp:Panel>
</ContentTemplate>
</asp:UpdatePanel>
But the usercontrols i used had an ajax tool CollapsiblePanelExtender .
and it not works any more. Certainly it works in other palce,if i directly put the usercontrol to a page.
I'm not sure it is because the iframe is in an UpdatePanel and the dynamicalPage.aspx itself also has an UpdatePanel.
But if i remove that UpdatePanel in dynamicalPage.aspx the usercontrols will get errors.
I hope some one can help me . Thanks a lot.