控件gridview的随着dropdownlist的变化而变化。具体的后台事件代码怎么写?dropdownlist的内容是动态的。
展开全部
两个绑定一个选择
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绑定
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绑定
展开全部
思路是这样的 添加一个 dropdownlist datasource gridview,datasource 连接数据库 或者datatable ,gridview绑定 datasource ,datasource 绑定dropdownlist ,然后dropdownlist 设置autopostback
最后
protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
{
GridView1.DataBind();
}
最后
protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
{
GridView1.DataBind();
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询