且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

无法使用DropDownList按数据库价格对从数据库中获取的值进行排序

更新时间:2023-10-07 19:38:34


更改代码
change you code from
protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
    {

    }









to

protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
    {
        bindDropDownList();
    }