The WijAccordion control allows you to open the multiple panes at once.
When the RequireOpenedPane property is set to True, clicking a header will close the currently opened pane, leaving the remaining panes closed. When the RequireOpenedPane property is set to False, clicking a header will not close the currently opened panes.
<asp:Panel ID="Panel1" runat="server">
<h3>Pane 1</h3>
<div>
<p>
Pane 1 content here.
</p>
</div>
<h3>Pane 2</h3>
<div>
<p>
Pane 2 content here.
</p>
</div>
<h3>
Pane 3</h3>
<div>
<p>
Pane 3 content here.
</p>
</div>
<h3>
Pane 4</h3>
<div>
<p>
Pane 4content here.
</p>
</div>
</asp:Panel>
<cc1:WijAccordion ID="Panel1_WijAccordion" runat="server"
TargetControlID="Panel1">
</cc1:WijAccordion>
