将数据库列链接到ASP.Net中的下拉控件

时间:2010-05-02 10:19:26

标签: asp.net sql-server-2005

我正在使用带有asp.net和SQL Server 2005的c#作为后端。我想在表单中使用下拉列表控件来填充文本框。下拉控件链接到数据库中的列。我怎样才能在c#中编写代码?

1 个答案:

答案 0 :(得分:0)

你的意思是

 protected void Page_Load(object sender, EventArgs e)
 {
 DropDownList1.datasource = list;
 DropDownList1.datBind();
 }

 protected void DropDownList1_OnSelectedIndexChanged(object sender, EventArgs e)
 {
      TextBox1.Text = DropDownList1.SelectedValue;
 }

或者这个

 protected void DropDownList1_OnSelectedIndexChanged(object sender, EventArgs e)
 {
      TextBox t = new TextBox();
      t.Text = DropDownList1.SelectedValue;
      body.InnerHtml.add(t);
 }