是否可以不加载标记中已定义的控件
我有一个多用途页面,根据 QueryString
参数我可以知道该页面现在将如何使用。
此页面的各种用途或功能之间的差异将导致显示的控件略有不同。
所以我正在考虑优化页面我可以尝试在页面生命周期的早期检测页面的当前功能并“删除”(删除,隐藏,无论我真正不知道的工作,这是我的第一个问题放置)不必要的控件并赢得更轻、更快的页面。
你觉得怎么样=)?
I have a multipurpose page, depending on a QueryString
parameter I can tell how this page is going to be used now.
The difference between the various purposes or functions of this page will result in a little difference of controls shown.
so I was thinking to optimize the page I could try to detect the current function of the page in an early even of the page's life cycle and "remove" (remove, hide, whatever works I really dunno and this is my question in the first place) the unnecessary controls and win a bit lighter and faster page.
What do you think =) ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,效果很好。您可以使用 Web 控件上的
Visible
属性将其从输出中删除,如果将其设置为 false,则不会向页面呈现任何 HTML 代码。如果您有一堆元素需要阻止渲染(或者是一个没有
Visible
属性的纯 HTML 元素),您可以在它们周围放置一个PlaceHolder
控件,并对其使用Visible
属性。Yes, that works fine. You can use the
Visible
property on web controls to remove them from the output, if you set it to false, it won't render any HTML code to the page.If you have a bunch of elements to keep from rendering (or a plain HTML element, which doesn't have the
Visible
property), you can put aPlaceHolder
control around them, and use theVisible
property on that.