DropDownList绑定多个字段
Posted 晓涵在路上
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了DropDownList绑定多个字段相关的知识,希望对你有一定的参考价值。
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绑定多个字段的主要内容,如果未能解决你的问题,请参考以下文章
asp.net怎样把数据库中字段的值绑定到dropdownlist上,