我有这个下拉列表:
<asp:DropDownList ID="DropDownList1"
runat="server"
AutoPostBack="true"
DataSourceID="SqlDataSource1"
DataTextField="Categorie"
DataValueField="Cat_ID"
>
</asp:DropDownList>
和 SqlDataSourceselect * all from [tbl_Cat]
它用于通过类别过滤数据库。它工作得很好,但它只显示tbl_Cat
. 我还想要select all
DropDownList 中的一个项目。
DropDownList 和数据网格不是用代码隐藏的;是否可以通过代码隐藏输入“选择所有记录”选项?