创建一个分层的DropDownList'在ASP.NET中

时间:2015-12-04 11:42:20

标签: c# jquery asp.net webforms dropdown

我必须在ASP.NET中创建一个分层DropDownList。我必须实现类似于我在下面显示的示例"通过点。"

  1. 层次结构最大深度可以是三。示例:Country-USA,State-Texas,City-Houston。

  2. 对于美国以外的国家/地区,我需要进行特殊搜索,因此我不相信我可以使用optgroup

  3. 示例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>
    &nbsp;
    <asp:DropDownList ID="DropDownList1" runat="server" 
        onselectedindexchanged="DropDownList1_SelectedIndexChanged">
    </asp:DropDownList>
    &nbsp;
    <asp:Button ID="Button1" runat="server" Text="Search Result" />
    </asp:Content>
    

    你能帮助我如何创建这个

0 个答案:

没有答案