在 MVC 视图中,我想从不同的控制器访问部分视图。在我解释我手头的问题之前,您应该知道我的解决方案中的所有内容:
Areas
MyArea
Views
Cont1
PartialPages
ViewImIn
Cont2
PartialPages
ViewICall
现在,在 ViewImIn.cshtml 我这样调用 ViewIcall.cshtml :
@Html.Partial("~/Views/Cont2/PartialPages/ViewICall.cshtml", Model)
但我不断收到错误消息,指出“未找到部分视图或视图引擎不支持搜索的位置......”
我也尝试过“../Cont2/PartialPages/ViewICall”及其变体。