DataList 控件中的DropDownList怎么绑定值

要在一个DataList 控件中的一个DropDownList控件绑定上一个datareader ,怎么写?

(DataList1.Rows[i].Cells[0].FindControl("DropDownList1") as DropDownList).DataSource = ... 其中Cells[0]中的index根据你具体的程序设置相应的单元格序号
温馨提示:答案为网友推荐,仅供参考
第1个回答  2014-04-27
DropDownList.DataSource= DataSet1.Tables["Users"].DefaultView;
第2个回答  2014-04-27
DropDownList1.DataSours=DataTable1; DropDownList1..DataTextField=""; DropDownList1.DataBind();
相似回答
大家正在搜