控件gridview的随着dropdownlist的变化而变化。具体的后台事件代码怎么写?dropdownlist的内容是动态的。
发布网友
发布时间:2022-04-27 10:56
我来回答
共2个回答
热心网友
时间:2022-04-27 12:25
两个绑定一个选择
protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
{
DataTable table = new DataTable();
table.Columns.Add("A");
DataRow rows = table.NewRow();
rows[0] = DropDownList1.SelectedValue;
table.Rows.Add(rows);
GridView1.DataSource = table;
GridView1.DataBind();
}
在dropdownlist的SelectedIndexChanged时间里重新将gridview绑定
热心网友
时间:2022-04-27 13:43
思路是这样的 添加一个 dropdownlist datasource gridview,datasource 连接数据库 或者datatable ,gridview绑定 datasource ,datasource 绑定dropdownlist ,然后dropdownlist 设置autopostback
最后
protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
{
GridView1.DataBind();
}