码迷,mamicode.com
首页 > 其他好文 > 详细

DropDownList绑定多个字段

时间:2018-05-24 18:06:49      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:SQ   orm   value   text   sql   items   class   this   字段   

     string sql_ch = string.Format("select C_ID,C_name from T_Channel");
                DataTable dt_ch = DBUtility.DbHelperSQL.Query(sql_ch).Tables[0];
                if (dt_ch != null && dt_ch.Rows.Count > 0)
                {
                    for (int i = 0; i < dt_ch.Rows.Count; i++)
                    {
                        string strText = "[" + dt_ch.Rows[i]["C_ID"].ToString() + "]" + dt_ch.Rows[i]["C_name"].ToString();
                        string strValue = dt_ch.Rows[i]["C_ID"].ToString(); ;
                        ListItem listItem = new ListItem
                        {
                            Text = strText,
                            Value = strValue
                        };

                        this.DropDownList1.Items.Add(listItem);
                    }
                }

  

DropDownList绑定多个字段

标签:SQ   orm   value   text   sql   items   class   this   字段   

原文地址:https://www.cnblogs.com/njy888888/p/9083737.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!