如何隐藏页面中的所有面板
我正在使用 asp.net 4。
我需要为页面的所有面板 WebControl 设置其可见性为 false,就像
uxTypesDisplayer.Visible = false;
我需要为所有此面板设置可见性而不提及每个面板的单个 ID。
小伙伴们知道该怎么做吗?谢谢
I am using asp.net 4.
I need set up for all Panels WebControl for a page their visibility to false like
uxTypesDisplayer.Visible = false;
I need to setup visibility for all this panel without mention the single ID for every single panel.
Do you know guys how to do it? Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
然后在页面的代码隐藏中这样调用它:
And then just call it like this in your Page's code-behind:
在代码隐藏中,您可以将所有内容放入一个父
Panel
中,并将其Visible
属性设置为 false;In the code-behind, you can just put everything in one parent
Panel
and set it'sVisible
property to false;你为什么需要这个?
您是否尝试默认不显示任何面板,然后通过某种逻辑显示其中 1 个或多个面板?
在这种情况下,请在每个面板的 aspx 页面中添加参数
visible="false"
。why do you need this?
are you trying to show no panel by default, and then by some logic display 1 or more of them?
in this case, add the parameter
visible="false"
in your aspx page for each panel.