如何在没有母版页的情况下在 iframe 中显示内容

发布于 2024-12-05 03:56:32 字数 138 浏览 1 评论 0原文

我有一个 iframe,它可以在其中获取并显示页面。

但是,如果我直接显示页面,它可能包含母版页中的页眉和页脚。

我的问题是我可以在iframe中只显示页面内容而不显示母版页吗?

请大家给予建议和指教。谢谢。

I have a iframe where it get and display of a page.

However if I display the page directly it may contain the header and footer from Master Page.

My question is can I display only the content of the page without the Master Page in iframe?

Please give suggestions and advises. Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

梓梦 2024-12-12 03:56:32

不要在 iframe 内设置页面的母版页属性。

Don't set the master page property of the page within the iframe.

素染倾城色 2024-12-12 03:56:32

您可能可以将一个参数传递到页面中(例如通过查询字符串),该参数设置后会将母版页切换为实际上空白的页面(因为如果没有母版页,您的页面将无法工作)。

所以在 Page_PreInit 方法中是这样的

if (Request.QueryString["iframe"] == "true")
  MasterPageFile = blankMasterPageFile;

You could probably pass a parameter into the page (through the querystring for example), which, when set, switches the masterpage to one that is effectively blank (since your page wont work without a masterpage).

So something like this in the Page_PreInit method

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