首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

关于DropdownList绑定解决思路

2012-10-18 
关于DropdownList绑定首先sql语句取出表中的所有列名已经实现select name from syscolumns where id(sele

关于DropdownList绑定
首先sql语句取出表中的所有列名已经实现

select name from syscolumns where id=(select max(id) from sysobjects where xtype='u' and name='RJProduct') 

现在想把所有列明绑定到dropdpwnlst中,问题有一个,就是这个表中的列是不确定的是随时增加的,这个绑定怎么实现?求代码。

[解决办法]
动态就动态呗,完全不影响啊,你取出的列名就是
select name from syscolumns where id=(select max(id) from sysobjects where xtype='u' and name='RJProduct') 
红色的部分。

绑定你指定是name字段就行了,里面多少个元素你不用考虑的

C# code
DataSet  ds  = XXX("你的SQL语句");this.DropDownList1.DataSource = ds;this.DropDownList1.DataTextField = "name";this.DropDownList1.DataValueField = "name";this.DropDownList1.DataBind(); 

热点排行