将母版页导入 ASP.NET 中的另一个母版页
是否可以使一个母版页仅包含另一个母版页?
我有三个母版页,它们的内容已聚合,我想让其中两个指向第三个,这样内容就不会被复制,但将它们保留下来,以便将来在需要时可以轻松更改。
Is it possible to make one master page simply include another master page?
I have three master pages, which have converged in content, and I want to make 2 of them point to the third, so that the content is not replicated, but leaving them in so that they can change easily in the future if they have to.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,您需要的就是嵌套母版页。 只需将子母版页的
<%@ Master %>
指令中的MasterPageFile
设置为父母版页即可。主.大师:
第一.大师:
第二.大师:
Yes, what you need is called nested master pages. Just set the
MasterPageFile
in the<%@ Master %>
directive of child master pages to the parent one.Main.Master:
First.Master:
Second.Master: