清除下拉列表中的数据

时间:2011-11-29 14:17:07

标签: c# asp.net drop-down-menu cascade-filtering

我有两个下拉列表。第二个下拉列表从第一个下拉列表中接收一个值以显示数据,但在第一个下拉列表中进行第一次选择后,第二个下拉列表的数据无法刷新以从第一个下拉列表中提供新数据。我在第一个下拉列表中使用了自动回发,但我不知道在选择更改时我能写什么。  这是我的第一个下拉列表的代码:

protected void PartNamber_SelectedIndexChanged(object sender, EventArgs e) 
{ 
PartNumber.DataBind(); 
PartNumber.ClearSelection(); 
} 

但它也不起作用

1 个答案:

答案 0 :(得分:6)

现在,您必须使用DropDown1.SelectedValue作为该查询的输入参数来编写第二个查询。获得所需数据后,您应该在DropDown2中对数据进行数据绑定。

样品:

protected void DropDown1_SelectedIndexChanged(object sender, EventArgs e)
{
   var data = GetDropDown2Data(((DropDownList)sender).SelectedValue);
   DropDown2.DataSource = data;
   DropDown2.DataBind();
}

执行上面显示的内容,每次DropDown1更改其选定值时,DropDown2将使用基于DropDown1选定值的新数据进行更新/刷新。