给DropDownList 控件加上“==请选择==”选项

发布时间:2024-12-25 10:42

遥控器上的方向键可用来上下左右选择菜单选项 #生活技巧# #家电使用技巧# #电视遥控器设置#

最新推荐文章于 2021-05-21 02:09:57 发布

yytt123622 于 2008-08-20 14:23:00 发布

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。

1.给VS2003下的DropDownList添加"==请选择=="选项的方法

private void Page_Load(object sender, System.EventArgs e)
{
 if(!IsPostBack)
 {
  String sql="select * from ClassInfo";
  SqlConnection con=new SqlConnection("server=.;uid=sa;pwd=sa;database=ManualAssign");
  SqlDataAdapter sda = new SqlDataAdapter(sql,con);
  DataSet ds =new DataSet();
  sda.Fill(ds, "ClassInfo");
  this.DropDownList1.DataSource = ds.Tables["ClassInfo"].DefaultView;
  this.DropDownList1.DataTextField = "ClassName";
  this.DropDownList1.DataValueField = "ClassId";
  this.DropDownList1.DataBind();
  this.DropDownList1.Items.Insert(0,new ListItem("==请选择==","-1"));//在Item中添加在第0项,该Item的text值为==请选择==,实际的value是-1,注意这句一定要写在this.DropDownList1.DataBind();绑定语句后,写在前面无效
  this.DropDownList1.Items.FindByValue("-1").Selected=true;
  this.DataGrid1.Visible=false;
 }
}
不加上If条件的话,无法选择下拉列表框的值,即使选中了也无法执行,因为当点击按钮时页面重新加载Load方法,默认还是选中“==请选择==”这个选项!

1.给VS2005下的DropDownList添加"==请选择=="选项的方法

请添加一个DropDownList 控件,后台写绑定语句,然后在其Items 中添加一个“==请选择==”项目。

最后一个关键点在于AppendDataBoundItems 属性,请将该属性设置为true,这样便能轻松完成功能的构建。

网址:给DropDownList 控件加上“==请选择==”选项 https://www.yuejiaxmz.com/news/view/561655

相关内容

选择合适的待办事项软件?10款软件推荐
待办事项软件选择指南:挑选你的效率助手
如何选择合适的待办事项软件?全面解析
厨房挂件如何选择
选择适合大团队的项目管理软件:9款主流工具对比
选择餐桌的注意事项
硅胶杂件配件选择注意事项
个人和团队最佳选择:10款流行待办事项软件
揭秘Android远程控制:安全便捷的软件选择与使用技巧
健康长寿请多选择素食

随便看看