我正在使用 alistview
填充 1000 行的表。DB表是关于问题和答案的。
我想将accordion
控制与 listview
. 我应该把accordion
控件放在里面listview itemtemplate
吗?
我想要的是点击第一个问题打开第一个答案,点击第二个问题关闭第一个答案并打开第二个答案。
更新:
我正在尝试这种方式
<asp:ListView ID="lvQuestions" runat="server"
DataKeyNames="QueryID"
DataSourceID="SqlDataSourceQueries">
<LayoutTemplate>
<asp:PlaceHolder ID="itemPlaceholder" runat="server" />
</LayoutTemplate>
<ItemTemplate>
<div id="products">
<h3><a href="#"><asp:Label ID="Label1" runat="server" Text='<%# Eval("Query") %>' ></asp:Label></a></h3>
<div><asp:Label ID="ReplyLabel" runat="server" Text='<%# Eval("Reply") %>'></asp:Label></div>
</div>
</ItemTemplate>
</asp:ListView>
但它不起作用。