无法选择组合框值

时间:2010-09-06 06:04:41

标签: c# asp.net

我有两个Combobox,其中第二个依赖于第一个。

这意味着当第一个Combobox的selectedindexchanged事件触发时,将启用第二个Combobox。 在事件应用之后,第二个Combobox被加载但我无法选择ComboBox值

我如何选择值? 我在c#中使用了Dave express 感谢

1 个答案:

答案 0 :(得分:0)

在页面加载事件中加载包含数据的第一个下拉列表。在第一个下拉列表的选定索引更改事件中,获取第一个下拉列表的选定文本/值,并基于该数据加载第二个下拉列表。在选定的索引更改事件的第二个下拉保持brak点和检查。请注意,您已为下拉列表指定了autopostback ='true'。

protected void Page_Load (object sender, EventArgs e)
{
//Load first drop down list
}

protected void ASPxComboModule1_SelectedIndexChanged(object sender, EventArgs e) 
{ 
//Load second drop down list based on first drop down selected text/value 
} 

protected void ASPxComboModule2_SelectedIndexChanged(object sender, EventArgs e) 
{ 
//check whether this event gets fired if so then you are able to select values in your second drop down list
}