我想根据下拉列表从数据库中选择值。我的数据库包含具有字段值的表:id(primary key),name,fullname,depat
.
我的webform1.aspx
页面包含一个下拉列表,Gridview
并且SqlDatasource
.
这是我的Webform1.aspx.cs
代码:
protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
{
string s = DropDownList1.SelectedValue.ToString();
SqlConnection con = new SqlConnection(
ConfigurationManager.ConnectionStrings["ztvConnectionString"].ConnectionString);
SqlDataAdapter da = new SqlDataAdapter("SELECT * FROM Table1 where name=depat", con);
DataTable dt = new DataTable();
da.Fill(dt);
GridView1.DataSource = dt;
GridView1.DataBind();
}
从下拉列表中选择值后不显示任何数据。错误在哪里?