Mysql
 sql >> Cơ Sở Dữ Liệu >  >> RDS >> Mysql

Cách lọc các giá trị danh sách thả xuống theo một danh sách thả xuống khác trong ASP.NET, c #

kiểm tra các liên kết sau để điền danh sách thả xuống theo tầng.

http://www.asp.net/ajaxLibrary/AjaxControlToolkitSampleSite/CascadingDcadingDown .aspx

http://www.codeproject.com/KB/aspnet/CascadingDropDown.aspx

http://www.aspsnippets.com/Articles /Creating-Cascading-DropDownLists-in-ASP.Net.aspx

Mã:

<table>
    <tr>
        <td>First</td>
        <td><asp:DropDownList ID="DDLFirst" runat="server"  AutoPostBack="true"
                onselectedindexchanged="DDLFirst_SelectedIndexChanged"></asp:DropDownList></td>
    </tr>
    <tr>
        <td>Secord</td>
        <td><asp:DropDownList ID="DDLSecond" runat="server" AutoPostBack="true"
                onselectedindexchanged="DDLSecond_SelectedIndexChanged">
            <asp:ListItem Text="Select" Value="Select"></asp:ListItem>    
            </asp:DropDownList></td>
    </tr>
    <tr>
        <td>Thrid</td>
        <td><asp:DropDownList ID="DDLThird" runat="server"><asp:ListItem Text="Select" Value="Select"></asp:ListItem>    </asp:DropDownList></td>
    </tr>
</table>

// Mã phía sau được bảo vệ void Page_Load (object sender, EventArgs e) {if (! IsPostBack) {// mã của bạn để liên kết danh sách thả xuống đầu tiên

        }
    }

    protected void DDLFirst_SelectedIndexChanged(object sender, EventArgs e)
    {
        if (DDLFirst.SelectedIndex > 0)
        {
            string FirstDDLValue = DDLFirst.SelectedItem.Value;
            // below your code to get the second drop down list value filtered on first selection


        }

    }

    protected void DDLSecond_SelectedIndexChanged(object sender, EventArgs e)
    {
        if (DDLSecond.SelectedIndex > 0)
        {
            string SecondDDLValue = DDLSecond.SelectedItem.Value;
            // below your code to get the third drop down list value filtered on Second selection


        }
    }


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Cài đặt Máy chủ Web trong Windows XP với Apache2, PHP5 và MySQL4 - Phần 1

  2. Làm thế nào để trừ một đến tháng của một định dạng ngày trong mysql?

  3. Cách sử dụng XÓA TRÊN CASCADE trên quan hệ nhiều-một

  4. Làm thế nào để kết hợp hai truy vấn đếm với tỷ lệ của chúng?

  5. Cách làm tròn thời gian đến phân đoạn 15 phút gần nhất