是否可以不加载标记中已定义的控件

发布于 2024-11-02 00:57:42 字数 217 浏览 0 评论 0原文

我有一个多用途页面,根据 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 技术交流群。

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

发布评论

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

评论(1

夜夜流光相皎洁 2024-11-09 00:57:42

是的,效果很好。您可以使用 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 a PlaceHolder control around them, and use the Visible property on that.

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