添加一个“;全选;在下拉列表中
本文关键字:全选 下拉列表 一个 添加 | 更新日期: 2023-09-27 18:21:32
我在ddlCategory中添加了一个"全选"值,以在选中时选择所有类别,但我收到了错误消息"无法对System.Int32和System.String执行'='操作"。有什么想法吗?提前谢谢。
protected void Page_Load(object sender, EventArgs e)
{
if (ddlCategory.SelectedItem.Text == "Select All")
{
ProductDataSource.SelectCommand = "SELECT [ProductId], [ProductName], [ImageUrl], [Price], [CategoryId] FROM [Product] WHERE [SystemId] = 1";
}
}
以下是ProductDataSource:的代码
<asp:SqlDataSource
ID="ProductDataSource"
EnableCaching="true"
DataSourceMode="DataSet"
runat="server"
ConnectionString="<%$ ConnectionStrings:ProjectConnectionString1 %>"
SelectCommand="SELECT [ProductId], [ProductName], [ImageUrl], [Price], [CategoryId] FROM [Product] WHERE [SystemId] = 1"
FilterExpression="CategoryId = '{0}'">
<FilterParameters>
<asp:ControlParameter Name="categoryparm" ControlID="ddlCategory" PropertyName="SelectedValue" />
</FilterParameters>
</asp:SqlDataSource>
您添加了元素全选,但元素的值是多少?我认为您最好使用SelectedValue。添加到您的DropDownList元素选择值为0的所有,然后您的方法将看起来像
if (ddlCategory.SelectedValue == 0){ /* your query here */}
此外,我建议您在第一次加载页面时执行此操作,而不是在回发时执行。因此,您的Page_Load方法看起来像
if (!IsPostBack){
if (ddlCategory.SelectedValue == 0)
ProductDataSource.SelectCommand = "select * from product where systemid = 1";
}