asp.net的DropDownlist绑定数据
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了asp.net的DropDownlist绑定数据相关的知识,希望对你有一定的参考价值。
有什么办法可以在一个页面里的几个DropDownlist控件分别绑定数据库的不同列,我把页面里的5个DropDownlist做成控件数组,用for循环加switch语句为不同的DropDownlist绑定数据,用dataadapter和dataset作数据集,但是总是在Fill方法后的this.DDLArr[i].DataSource=Ds;出错
代码如下
protected System.Web.UI.WebControls.DropDownList DDLBtype;
protected System.Web.UI.WebControls.DropDownList DDLStype;
protected System.Web.UI.WebControls.DropDownList DDLFormat;
protected System.Web.UI.WebControls.DropDownList DDLEnv;
protected System.Web.UI.WebControls.DropDownList DDLBLevel;
public DropDownList[] DDLArr = new DropDownList[5];
protected void Page_Load(object sender, EventArgs e)
DDLArr[0] = DDLBtype;
DDLArr[1] = DDLStype;
DDLArr[2] = DDLFormat;
DDLArr[3] = DDLEnv;
DDLArr[4] = DDLBLevel;
for (int i = 0; i <= 4; i++)
switch (i)
case 0:
Drop = "Btype";
SelDBCol(Drop,0);
break;
case 1:
Drop = "Stype";
SelDBCol(Drop,1);
break;
case 2:
Drop = "Format";
SelDBCol(Drop,2);
break;
case 3:
Drop = "Environment";
SelDBCol(Drop,3);
break;
case 4:
Drop = "Blevel";
SelDBCol(Drop,4);
break;
default:
break;
protected void SelDBCol(string Drop,int i)
SqlConnection conn = new SqlConnection("server=.;database=ebook;uid=sa;pwd=sa");
conn.Open();
SqlDataAdapter Da = new SqlDataAdapter("select distinct " + Drop + " from Book", conn);
DataSet Ds = new DataSet();
Da.Fill(Ds);
this.DDLArr[i].DataSource=Ds;
this.DDLArr[i].DataTextField = Drop;
this.DDLArr[i].DataValueField = Drop;
this.DDLArr[i].DataBind();
ListItem LI = new ListItem("请选择", "");
this.DDLArr[i].Items.Add(LI);
this.DDLArr[i].SelectedIndex = this.DDLArr[i].Items.Count - 1;
还有就是家里的VS2005已经换了个版本,怎么还是看不见datasource控件,连sql2000连不上啊
还有漏了一句public string Drop;//定义Drop字符变量
2L,3L的方法都用过了,还是错
还是错,什么错误提示也没说?
///////////////////////////
Da.Fill(Ds);
this.DDLArr[i].DataSource=Ds;
改成下边这样试试
Da.Fill(Ds,"Book");
this.DDLArr[i].DataSource=Ds.Tables["Book"];
另外补充一下,用了SqlDataAdapter,数据库就不需要显式的打开了,所以conn.Open()去掉吧 参考技术C 写上conn.close()放在最后再试下
那得看是什么样的datasource 了
Sql的是SqldataSource在数据项的工具里本回答被提问者采纳 参考技术D 不是吧,大哥,
有简单方法不用,搞的这么麻烦
用ASP.NET怎样动态给dropdownlist控件赋值
参考技术A 1.绑定数据源2.代码循环添加
for(int i=0;i<100;i++)
ListItem item=new ListItem(i.ToString(),"手动添加"+i.ToString());
dropdownList.Items.Add(item);
3.还可以手动添加 参考技术B 指定其datasource=你的数据 可以是datatable 对象 或者List对象 或者hashtable对象 然后 设计dropdownList.DataTextSource=显示的文本字段;dropdownList.DataValueSource=值字段!追问
能不能用数组方法动态添加 不指定其数据源
参考技术C 后台绑定数据库查询的数据列表值。以上是关于asp.net的DropDownlist绑定数据的主要内容,如果未能解决你的问题,请参考以下文章
将 ListItem 的 ASP.NET 列表数据绑定到 DropDownList 问题
来自Web服务的DropDownList绑定在asp.net中编辑时不传递数据源
asp.net怎样把数据库中字段的值绑定到dropdownlist上,
ASP.NET DropDownList 未在 SelectedIndexChanged 上绑定 SQL
在 Kendo Scheduler 自定义模板中绑定 DropDownList(ASP.NET MVC Wrapper 版本)