我有一个名为“RenderBody()”的主模板和一个“OneIn”模板,它是主页面下的子模板。我还在 OneIn 模板中调用了 RenderBody() 函数,但它给了我这个错误:
The file "~/Views/OneIn.cshtml" cannot be requested directly because it calls the "RenderSection" method.
“RenderSection”实际上是“renderbody”,我只是在尝试一些新的东西,但它也不起作用
嵌套路径:
Master
-> Homepage
-> OneIn
-> One Column Page
我在所有页面顶部的代码上也有这些行:
@inherits Umbraco.Web.Mvc.UmbracoTemplatePage
@{
Layout = "ParentPageName.cshtml";
}