在 C# 中的 formview 中链接两个下拉列表
我有一个网页,表单视图中有两个下拉菜单。当用户在第一个下拉列表中选择一个项目时,我想更改第二个下拉列表中的项目。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在第一个下拉列表中添加
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 setAutoPostBack="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.