神龙之初

导航

对下拉控件的绑定

Datatable dt1 = .....(获取数据)
this.DropDownList2.DataTextField = "fullName";
    this.DropDownList2.DataValueField = "ID";
    this.DropDownList2.DataSource =dt1;
    this.DropDownList2.DataBind();

posted on 2004-12-14 11:38  David  阅读(164)  评论(0编辑  收藏  举报