正常的下拉框的绑定如下:
Hashtable hashtable = new Hashtable();
hashtable.Add("usertype", 3);
DataTable dt = this.GetTableListAll(hashtable);
this.DDL_LOGIN_NAME.DataSource = dt;
this.DDL_LOGIN_NAME.DataTextField = "name";
this.DDL_LOGIN_NAME.DataValueField = "id";
this.DDL_LOGIN_NAME.DataBind();
上面显示的text是name,如果需要显示name加上email,该如何呢
Hashtable hashtable = new Hashtable();
hashtable.Add("usertype", 3);
DataTable dt = this.GetTableListAll(hashtable);
for (int i = 0; i < dt.Rows.Count;i++ )
{
string strText = dt.Rows[i]["name"].ToString() + "|" + dt.Rows[i]["email"].ToString();
string strValue = dt.Rows[i]["id"].ToString(); ;
ListItem listItem = new ListItem
{
Text = strText,
Value = strValue
};
this.DDL_LOGIN_NAME.Items.Add(listItem);
}
今天的文章DropDownList绑定显示数据库多个字段分享到此就结束了,感谢您的阅读,如果确实帮到您,您可以动动手指转发给其他人。
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/26177.html