DropDownList的一个问题?
我的dropdownlist的数据项来自数据库,现在我想增加一项ALL。当选择这一项时,相当于选择dropdownlist从数据库读取的所有的数据项,
我试着添加 <asp:ListItem Value= "ALL "> </asp:ListItem> 这一句,可是列表里却没有这一项,只是从数据库读取的那些项
这要怎么实现阿? 能实现吗? 谢谢大家了
------解决方案--------------------dropdownlistID.Items.Insert(0,new ListItem( "All ", "All "));
------解决方案--------------------先把DropDownList绑定了
DropDownList1.DataSource = ...;
DropDownList1.DataTextField = ...;
DropDownList1.DataValueField = ...;
DropDownList1.DataBind();
然后加一句
DropDownList1.Items.Insert(0, new ListItem( "全部 ", "ALL "));
------解决方案--------------------在从数据库提取的时候,用下面的语句
select Filed from table
union
select 'All ' as Field
------解决方案--------------------DropDownList1.DataSource = ...;
DropDownList1.DataTextField = ...;
DropDownList1.DataValueField = ...;
DropDownList1.DataBind();
DropDownList1.Items.Insert(0,new ListItem( "全部 ", "All "));
就OK了