Chinaunix首页 | 论坛 | 博客
  • 博客访问: 502385
  • 博文数量: 130
  • 博客积分: 3581
  • 博客等级: 中校
  • 技术积分: 1200
  • 用 户 组: 普通用户
  • 注册时间: 2005-02-18 10:51
文章分类

全部博文(130)

文章存档

2016年(1)

2015年(8)

2014年(6)

2013年(2)

2012年(9)

2011年(16)

2010年(5)

2009年(4)

2008年(2)

2007年(6)

2006年(50)

2005年(21)

我的朋友

分类:

2006-02-10 14:21:26

DropDownList的數據綁定!
<>
public void PageLoad(object sender,EventArgs e)
{
if(!IsPostBack)
{
SqlConnection myConn = new SqlConnection(server="";database="";user id="";pwd="");
SqlDataAdapter da = new SqlDataAdapter("select a,b from table",myConn);
DataSet ds = new DataSet();
da.Fill(ds,"table");
this.DropDownList.DataSource=this.ds.tables["table"].DefaultView;
this.DropDownList.DataTextField="a";
this.DropDownList.DataValueField="b";
this.ddl_dept.DataBind();
}
}
 
阅读(2944) | 评论(4) | 转发(0) |
0

上一篇:ASP.NET电子邮件的发送

下一篇:一個例子

给主人留下些什么吧!~~