Messing around with the Controls collection, particularly removing and swapping controls between Control containers doesn't always work.
Do you specifically not want to render the content before a postback? WHy not render the Controls and wrap them in a div with a display:none on the CSS, which can then be swapped client-side using something easy like jQuery?
eg.
<myCtrl:CollapsiblePanel id="myCollapsiblePanel" runat="server" Text="Panel title">
<asp:Label id="lblTest" runat="server" Text="Test Label:"/>
<asp:TextBox id="txbTest" runat="server"/>
</myCtrl:CollapsiblePanel>
You should probably create apply this in a CreateChildControls overload:
protected override CraeteChildControls()
{
Controls.Add(new LiteralControl("<"+"h1>"+Text+"[+]"));
Panel panel=new Panel();
// add controls in collapsable panel to panel here
Controls.Add(panel);
}
which translates as:
<div id="ctl00_etc_myCollapsiblePanel">
<h1>Text with button to expand/collapse. eg <h1>Panel title <a onclick="expandPanel">[+]</a></h1>
<asp:Panel <div id="childPanel" style="display:none">
<label id="ctl_00_etc">Test Label</label>
<input ... />
</asp:Panel>
</div>
and some jQuery (or similar) attached to the :
function expandPanel() {
$('<%=childPanel.ClientID %>').css('display','block');
}
All this is pseudo code, of course.
