DataList 控件中的DropDownList怎么绑定值

2024-10-30 04:51:28
推荐回答(3个)
回答1:

(DataList1.Rows[i].Cells[0].FindControl("DropDownList1") as DropDownList).DataSource = ... 其中Cells[0]中的index根据你具体的程序设置相应的单元格序号

回答2:

DropDownList.DataSource= DataSet1.Tables["Users"].DefaultView;

回答3:

DropDownList1.DataSours=DataTable1; DropDownList1..DataTextField=""; DropDownList1.DataBind();