我在页面上有一个下拉列表,在下拉列表中我有数据库中表的名称。我不知道如何在 gridview 或 datalist 中插入所选表中的数据。
我尝试使用我在学校做的另一个 c# 项目中的代码,但它没有用
编辑:这里添加了答案
protected void Button1_Click(object sender, EventArgs e)
{
OleDbConnection con = new OleDbConnection(connectionString);
OleDbDataAdapter da = new OleDbDataAdapter (string.Format("SELECT * from {0}", dropDownList.SelectedValue), con);
DataSet ds = new DataSet();
da.MissingSchemaAction = MissingSchemaAction.AddWithKey;
da.Fill(ds);
GridView1.DataSource = ds.Tables[0];
GridView1.DataBind();
con.Close();
}