如何使页面不使用 ASP.NET MVC 3 中的母版页

发布于 2024-11-08 02:12:21 字数 128 浏览 1 评论 0原文

我有一个 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 技术交流群。

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

发布评论

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

评论(3

花间憩 2024-11-15 02:12:21

只需放置 @{ Layout = null; } 在视图文件的开头。

Just place @{ Layout = null; } at the beginning of your view file.

东走西顾 2024-11-15 02:12:21

我不太清楚你是否想问“如何渲染部分视图?”或“我如何选择不同的母版页?”

如果你想渲染部分,只需使用

@Html.Partial()

如果你想改变布局添加一些像..

@{
    Layout = "~/Views/Shared/MySwankyLayout.cshtml";
}

如果你不想要布局..

@{
    Layout = null;
}

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

@Html.Partial()

If you want to change the layout add someting like ..

@{
    Layout = "~/Views/Shared/MySwankyLayout.cshtml";
}

If you want no layout ..

@{
    Layout = null;
}
旧伤还要旧人安 2024-11-15 02:12:21

您可以设置该特定页面的布局属性,例如在 Razor 中:

@{
 Layout = ...
}

You can set the Layout property of that specific page, e.g. in Razor:

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