【发布时间】:2022-01-22 04:59:18
【问题描述】:
管理员/Dashboard.cshtml:
<partial name="Partials/_Dash.cshtml" />
我正在尝试为仪表板面板创建一个局部视图 _Dash.cshtml 菜单。但是,我收到以下错误:
错误:
An unhandled exception occurred while processing the request.
InvalidOperationException: The partial view 'Partials/_Dash.cshtml' was not found. The following locations were searched:
/Views/Admin/Partials/_Dash.cshtml
Microsoft.AspNetCore.Mvc.TagHelpers.PartialTagHelper.ProcessAsync(TagHelperContext context, TagHelperOutput output)
我已经有了在 _Layout 中调用的 Partial View _Menu:
<partial name="Partials/_Menu.cshtml" />
它工作正常。
可能是什么问题?
【问题讨论】:
标签: asp.net asp.net-mvc asp.net-mvc-3