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.
如果我已经创建了一堆视图,有什么方法可以更改它们的布局页面?
您可以在文件 _ViewStart.cshtml 中更改整个应用程序的默认布局页面。默认情况下,它具有以下代码:
@{ Layout = "~/Views/Shared/_Layout.cshtml"; }
这指定如果您的任何视图没有明确说明要使用哪个布局,它们将使用此布局。
或者,您可以将代码添加到您的视图(如上),明确说明要使用的布局。