在DropDownList,ListBox中增加一行,包括名称和值
方法1:(在代码中加)
listbox1.Items.Add(new ListItem("请选择游戏类别","-1"));
方法2:(sql 语句中加)
select '请选择游戏类别','-1' union select 类别名称,类别值 from 游戏表
select '请选择游戏类别' as 类别名称,'-1' as 类别值 union select 类别名称,类别值 from 游戏表 order by 类别值
方法3 asp.net2.0:
asp.net2.0中DropDownList只要将AppendDataBoundItems设置为true
在集合中加一项
<asp:DropDownList ID="DropDownList2" runat="server" AppendDataBoundItems="True">
<asp:ListItem Value="-1">请选择地区</asp:ListItem>
</asp:DropDownList>
就可以了