如何获得级联列表框

时间:2009-12-24 19:19:45

标签: asp.net

我的页面上有两个列表框Say ListBox A和ListBox B. 我使用通用列表将数据填充到ListBox A中。

我想基于ListBox A选择

填充ListBox B.

有人可以指导我如何做到这一点

2 个答案:

答案 0 :(得分:1)

使用ASP.NET AJAX Control工具包中的Cascading Drop Down控件。要将其从下拉列表更改为列表框,请在属性中添加multiple="true"multiple="multiple"

答案 1 :(得分:0)

我认为你所要做的就是:

添加以下事件列表框A

将此内容添加到

后面的代码中
protected void ListBoxA_SelectedIndexChanged(object sender, EventArgs e)
{
     // populate listbox B
}

您的aspx中列表框A的以下属性:

<asp:ListBox ID="ListBoxA" runat="server" 
onselectedindexchanged="ListBoxA_SelectedIndexChanged"></asp:ListBox>

<asp:ListBox ID="ListBoxB" runat="server" 
></asp:ListBox>