sql >> データベース >  >> RDS >> Mysql

ドロップダウンリストの値をASP.NETの別のドロップダウンリストでフィルタリングする方法、c#

    カスケードドロップダウンリストの入力については、次のリンクを確認してください。

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

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

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

    コード:

    <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>
    

    //保護されたコードの背後にあるvoidPage_Load(object sender、EventArgs e){if(!IsPostBack){//最初のドロップダウンリストをバインドするコード

            }
        }
    
        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. varcharを自動インクリメントする方法

    2. インメモリOLTP:SQLServer2016の新機能

    3. データはNullです。このメソッドまたはプロパティは、null値では呼び出すことができません。(コンボボックスを使用)

    4. デスクトップアプリケーションの自動テスト:利便性とフレームワークの概要