C#中怎么利用ListBox获取多选项的值
C# 中怎么利用ListBox获取多选项的值,针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴找到更简单易行的方法。
成都创新互联公司2013年开创至今,先为泾川等服务建站,泾川等地企业,进行企业商务咨询服务。为泾川企业网站制作PC+手机+微官网三网同步一站式服务解决您的所有建站问题。
protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { BindListBox(); } } #region 绑定类别名称到ListBox /// /// 绑定类别名称到ListBox /// void BindListBox() { string sql = "SELECT * FROM ClassTable WHERE PlateID=2 OR PlateID=4"; DataTable myClassTable = new ClassTable_bll().WhereToClassTable(sql); ListBox1.DataTextField = "MerchClassName"; ListBox1.DataValueField = "ClassID"; ListBox1.DataSource = myClassTable.DefaultView; ListBox1.DataBind(); } #endregion protected void Button1_Click(object sender, EventArgs e) { string str = ""; for (int i = 0; i < ListBox1.Items.Count; i++) { if (ListBox1.Items[i].Selected == true) { str = str + ListBox1.Items[i].Text+","; } } this.Response.Write("alert('" + str + "');
关于C# 中怎么利用ListBox获取多选项的值问题的解答就分享到这里了,希望以上内容可以对大家有一定的帮助,如果你还有很多疑惑没有解开,可以关注创新互联行业资讯频道了解更多相关知识。
当前名称:C#中怎么利用ListBox获取多选项的值
转载注明:http://scyingshan.cn/article/pochih.html