方法一:
<asp:DropDownList ID="DropDownList1" runat="server" AppendDataBoundItems="true">
<asp:ListItem Selected="True" Text="请选择" Value="-1"></asp:ListItem>
</asp:DropDownList>
然后再在后台或数据源绑定
方法二:
ListItem item = new ListItem("请选择", "0");
this.DropDownList1.Items.Insert(0, item);
- 本文标题: 数据绑定的dropdownlist,默认值如何设为空或"请选择" 之类的
- 文章分类:【.NET/Web】
- 非特殊说明,本文版权归【胡同里的砖头】个人博客 所有,转载请注明出处.