Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个基于 webmatrix 的网站并有一个测试页面。我需要它不是 _SiteLayout 页面的一部分。我该怎么做呢?
我的目录:
root/ --assets/ --layouts/ ----_SiteLayout.cshtml --Default.cshtml --Test.cshtml
如上所示,根目录中有两个网页,默认和测试。默认使用 _SiteLayout 页面。测试也是如此。但我不希望 Test.cshtml 使用 _SiteLayout 页面。这可以做到吗?
尝试在 Test.cshtml 的顶部将 Layout 设置为 null。
@{ Layout = null; }