我創建了一個區域,可以處理我們的所有開發產品中的一些泛型事物,就像登錄,HTML助手等一樣。我試圖引用該區域以外的部分視圖。我已經註冊了面積Asp.net MVC - 渲染區域的局部視圖
public class Routes : AreaRegistration
{
public override void RegisterArea(AreaRegistrationContext context)
{
context.MapRoute(
"Common_default",
"Common/{controller}/{action}/{id}",
new {
controller = "Account",
action = "Index",
id = UrlParameter.Optional
});
}
public override string AreaName
{
get { return "MvcCommons"; }
}
}
現在在常規項目,我想引用在MvcCommons區景色...
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
<h2>TestGrid</h2>
<% Html.RenderPartial("jQGridTable", ViewData.Model); %>
但我不斷收到該視圖未找到。之前,在創建MVC Commons項目時,我收到了視圖錯誤,但錯誤告訴我它在區域文件夾和默認視圖文件夾中均顯示。這一次,我只獲取默認文件夾。有什麼辦法可以做到這一點?
謝謝大家!