如何通过ASP.NET中的另一个下拉列表过滤下拉列表值,c#
我有一个关于过滤器的简单问题.
但我想只显示所选特定项目的数据值. 它是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 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 } } (编辑:莱芜站长网) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |
- asp.net-mvc – 使用AD的ASP.NET MVC表单Auth在本地工作但在
- 单元测试 – 单元测试项目不能参考MVC项目
- asp.net-mvc – 为什么在ASP.NET MVC中使用lambdas而不是反
- ASP.NET中操作SQL数据库(连接字符串的配置及获取)
- asp.net – 允许服务器/ usercontrol上的任何属性/属性
- asp.net-mvc-3 – 具有最佳实践的示例N层ASP.NET MVC3应用程
- 一个简答的Access下的分页asp.net代码
- asp.net – 我应该使用WebMatrix构建一个真实世界的网站吗?
- 如何从经典ASP输出Excel * .xls文件
- 什么用于ASP.NET的成员资格