//获得学科列表
DataTable xiaoXueke = My_Sql.Sql5("select X_SN,X_DaiMa,X_Name from NongCun_XueKe");
this.Drop_XueKe.DataSource = xiaoXueke;
this.Drop_XueKe.DataTextField = "X_Name";
this.Drop_XueKe.DataValueField = "X_DaiMa";
this.Drop_XueKe.DataBind();
DataRow[] _XueKe = xiaoXueke.Select();
for (int i = 0; i < _XueKe.Length;i++ )
{
this.Drop_XueKe.Items.Add(new ListItem("学科:"+_XueKe[i]["X_name"].ToString(),_XueKe[i]["X_DaiMa"].ToString()));
}
数据库查找数据绑定到DropList上
Posted 张三道
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数据库查找数据绑定到DropList上相关的知识,希望对你有一定的参考价值。
以上是关于数据库查找数据绑定到DropList上的主要内容,如果未能解决你的问题,请参考以下文章