我必须在ASP.NET中创建一个分层DropDownList
。我必须实现类似于我在下面显示的示例"通过点。"
层次结构最大深度可以是三。示例:Country-USA,State-Texas,City-Houston。
对于美国以外的国家/地区,我需要进行特殊搜索,因此我不相信我可以使用optgroup
。
示例DropDownList
:
USA
New York
California
Texas
Houston
Australia
New Zealand
我尝试了什么:
<asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent">
<h2>
Hierarichal Dropdown List
</h2>
<asp:Label ID="Label1" runat="server" Text="Location"></asp:Label>
<asp:DropDownList ID="DropDownList1" runat="server"
onselectedindexchanged="DropDownList1_SelectedIndexChanged">
</asp:DropDownList>
<asp:Button ID="Button1" runat="server" Text="Search Result" />
</asp:Content>
你能帮助我如何创建这个