当在下拉列表中选择某些值时如何更改面板的内容
我在我的 asp.net 3.5 aspx 页面中使用 2 个面板,当我从其他面板中的下拉列表中动态选择某个值时,我需要更改面板的内容。任何人都可以建议我如何动态更改面板的内容。
提前致谢..
I am using 2 panels in my asp.net 3.5 aspx page, i need to change the content of panel when i dynamically select some value from dropdownlist which is in other panel . Can anybody suggest me how to dynamically change the content of a panel.
Thanks in advance..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
确保在下拉列表中设置 AutoPostBack=true 和 OnSelectedItemChanged 事件。我假设它有 runat="server"。然后,您只需编写处理 OnSelectedItemChanged 的代码,这将更新面板
Make sure you set AutoPostBack=true and OnSelectedItemChanged event on the dropdown. I assume it has runat="server". Then you just write the code that handles OnSelectedItemChanged, that will update the panels