• 如何让一个DropDownList绑定值后默认值为空


    SqlConnection con = new SqlConnection("server=.;uid=sa;database=pubs");        
    SqlDataAdapter sdr = new SqlDataAdapter("select * from employee",con);        
    DataSet ds = new DataSet();        
    sdr.Fill(ds);        
    DropDownList1.DataSource = ds;        
    DropDownList1.DataTextField = "emp_id";        
    DropDownList1.DataBind();        
    DropDownList1.Items.Add(" ");        
    DropDownList1.Items[this.DropDownList1.Items.Count - 1].Value = " ";        
    DropDownList1.SelectedIndex = this.DropDownList1.Items.Count - 1;
    -----------------------------------------------------------------
    
    
    this.ddl_xmjl.Items.Insert(0, new ListItem("", "0"));  //单独使用,0代表位置
    红色或者蓝色单独使用,都可以
  • 相关阅读:
    sys.argv
    webbrowser
    2014年11月26日(程序员的加班)
    下一站红灯
    Java基础知识总结(超级经典)
    JAVA的三个开发方向
    2014年11月23日
    大学,一切才刚刚开始
    XML学习总结
    C# 文件重命名
  • 原文地址:https://www.cnblogs.com/tangge/p/1876202.html
Copyright © 2020-2023  润新知