如何在没有母版页的情况下在 iframe 中显示内容
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不要在 iframe 内设置页面的母版页属性。
Don't set the master page property of the page within the iframe.
您可能可以将一个参数传递到页面中(例如通过查询字符串),该参数设置后会将母版页切换为实际上空白的页面(因为如果没有母版页,您的页面将无法工作)。
所以在 Page_PreInit 方法中是这样的
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