开发者

Master page not available as LayoutPage when creating view

开发者 https://www.devze.com 2023-02-28 17:44 出处:网络
I\'ve saved a site.master file to my view\\shared folder. When assigning a new view to the controller I check the Use layout or master page from the Add view dialog.

I've saved a site.master file to my view\shared folder. When assigning a new view to the controller I check the Use layout or master page from the Add view dialog.

When browsing the view/shared folder only .cshtml files are available, not the .master file.

I am using the Razor View Engine.

Why am I not able to select the site开发者_Go百科.master file?


The Razor view engine doesn't use a .master file. This is specific to the WebForms view engine. Razor uses a layout file corresponding to ~/Views/Shared/_Layout.cshtml. So save your custom master as a .cshtml file in the ~/Views/Shared folder and it will appear when adding a new view.

0

精彩评论

暂无评论...
验证码 换一张
取 消