在 C# 中的 formview 中链接两个下拉列表

发布于 2024-09-24 12:02:55 字数 63 浏览 1 评论 0原文

我有一个网页,表单视图中有两个下拉菜单。当用户在第一个下拉列表中选择一个项目时,我想更改第二个下拉列表中的项目。

I have a web page with two dropdowns in formview. I want to change items in the second dropdown when the user selects an item in the first dropdown.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

月亮邮递员 2024-10-01 12:02:55

在第一个下拉列表中添加 SelectedIndexChanged 事件,然后在该事件的代码中绑定第二个下拉列表。另外,您必须在第一个下拉菜单中设置 AutoPostBack="True"

http://msdn.microsoft。 com/en-us/library/system.web.ui.webcontrols.listcontrol.onselectedindexchanged.aspx

您可能还想将两个下拉列表放入 UpdatePanel 中,以避免发布整个每次都翻页。

Add a SelectedIndexChanged event on the first dropdown and then, in that event's code, bind the second one. Also, you have to set AutoPostBack="True" on your first dropdown.

http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.listcontrol.onselectedindexchanged.aspx

You might also want to put the two dropdowns inside an UpdatePanel, to avoid posting the entire page each time.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文