好的,所以我知道标题不是很好,但我会尝试解释。
我有一个网格视图,其中有一个下拉菜单作为模板字段。我想拥有它,以便如果有人在下拉列表中选择某些内容,gridview 中的所有下拉列表都会更改为该值。这就是我的想法,但请参阅评论:
protected void dcDdl_SelectedIndexChanged(object sender, EventArgs e)
{
if (recPartDdl.SelectedItem.Text != "All")
{
string value = //Need to get the value of the changed drop down.
foreach(GridViewRow row in allRmaGv.Rows)
{
DropDownList dcDropDown = (DropDownList)row.FindControl("dcDdl");
dcDropDown.SelectedValue = value;
}
}
}
我需要为网格视图中的类似过滤器的 excel 执行此操作。