55问答网
所有问题
DataList 控件中的DropDownList怎么绑定值
要在一个DataList 控件中的一个DropDownList控件绑定上一个datareader ,怎么写?
举报该问题
推荐答案 2014-04-28
(DataList1.Rows[i].Cells[0].FindControl("DropDownList1") as DropDownList).DataSource = ... 其中Cells[0]中的index根据你具体的程序设置相应的单元格序号
温馨提示:答案为网友推荐,仅供参考
当前网址:
http://55.wendadaohang.com/zd/FIeR4cRIIeGLL4cG48R.html
其他回答
第1个回答 2014-04-27
DropDownList.DataSource= DataSet1.Tables["Users"].DefaultView;
第2个回答 2014-04-27
DropDownList1.DataSours=DataTable1; DropDownList1..DataTextField=""; DropDownList1.DataBind();
相似回答
大家正在搜