你用什么做那个筛选的功能..是在dropdownlist上面放一个button还是linkbutton?
如果是这样的是,直接编写这个按钮的点击事件...
做法:
点击这个按钮的时候,判断这个按钮的text,比如是
降序...
那你就查数据库...然后你通过查数据库的sql语句
就加一个
order
by
字段
desc
然后在把
按钮的text改成
升序..
基本思路就是这样,怎么排序关键看你从数据库读出的数据怎么样子排序...
就是说你想第一项是显示你自己写的数据
后面项的数据是从数据库中取出来是吧
那这样的话 要循环从数据库中取出数据来绑定才行for
不能直接绑定了(dataTextfile datavaluefile)不能用这两属性
不明白的话 再hi我哈
DropDownList1.Items.Add(0, new ListItem("选择分类", "0"));
DropDownList1.Items.Insert(0, new ListItem("选择分类", "0"));
DropDownList2.Items.Insert(0, new ListItem("所属地区", "0"));
DropDownList3.Items.Insert(0, new ListItem("----- 餐厅氛围 -----", "0"));
DropDownList4.Items.Insert(0, new ListItem("----- 热门商圈 -----", "0"));
改成:
DropDownList1.Items.Insert(0, new ListItem("选择分类", "0"));
DropDownList2.Items.Insert(1, new ListItem("所属地区", "0"));
DropDownList3.Items.Insert(2, new ListItem("----- 餐厅氛围 -----", "0"));
DropDownList4.Items.Insert(3, new ListItem("----- 热门商圈 -----", "0"));