如何使页面不使用 ASP.NET MVC 3 中的母版页
我有一个 MVC3 站点,其中有一些页面我不想使用母版页布局。默认母版页在 _ViewStart 文件中指定,因此会应用于所有内容。
如何配置以便在没有母版页的情况下显示某些页面?
谢谢马特
I have an MVC3 site where I have some pages that I don't want to use the master page layout. The default master page is specified in the _ViewStart file so gets applied to everything.
How do I configure things so that some pages are displayed without the master page ?
Thanks
Matt
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
只需放置
@{ Layout = null; }
在视图文件的开头。Just place
@{ Layout = null; }
at the beginning of your view file.我不太清楚你是否想问“如何渲染部分视图?”或“我如何选择不同的母版页?”
如果你想渲染部分,只需使用
如果你想改变布局添加一些像..
如果你不想要布局..
I'm not really clear if you mean to ask "how do I render a partial view?" or "how do i choose a different master page?"
If you want to render partial just use
If you want to change the layout add someting like ..
If you want no layout ..
您可以设置该特定页面的布局属性,例如在 Razor 中:
You can set the Layout property of that specific page, e.g. in Razor: