如何通过ASP.NET中的另一个下拉列表过滤下拉列表值,c#

我有一个关于过滤器的简单问题.
我有4个下拉列表,用于从 MySQL数据库表中过滤我的Web应用程序中的数据.
已选择第一个下拉列表,仅显示一个project_id,但其他下拉列表显示数据库中的所有可能值 – 这是我到目前为止所做的.

但我想只显示所选特定项目的数据值.

它是ASP.NET 4.0,C#后面和MysqL数据库使用.
任何帮助将不胜感激.
谢谢

解决方法

查看以下链接以填充级联下拉列表.

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>

//代码背后
protected void Page_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


        }
    }

相关文章

### 创建一个gRPC服务项目(grpc服务端)和一个 webapi项目(...
一、SiganlR 使用的协议类型 1.websocket即时通讯协议 2.Ser...
.Net 6 WebApi 项目 在Linux系统上 打包成Docker镜像,发布为...
一、 PD简介PowerDesigner 是一个集所有现代建模技术于一身的...
一、存储过程 存储过程就像数据库中运行的方法(函数) 优点:...
一、Ueditor的下载 1、百度编辑器下载地址:http://ueditor....