我正在尝试创建一个中继器,它将在手风琴控制器中创建多个手风琴窗格,但看起来两者不能嵌套。有解决方法吗?
这就是我想要做的:
<asp:Accordion ID="Accordion1" runat="server" >
<Panes>
<asp:Repeater runat="server" id="rpPanes">
<ItemTemplate>
<asp:AccordionPane ID="AccordionPane1" runat="server">
<Header>header from db here</Header>
<Content>content from DB here </Content>
</asp:AccordionPane>
</ItemTemplate>
</Repeater>
</Panes>
</asp:Accordion>
手风琴窗格的数量需要是动态的,因为它来自数据库,并且总是可以添加或删除一个(在数据库本身内)