我剛剛創建了一個新區域來組織我的代碼。 但是目前我實際上很難將它從我的「基礎」或「根」索引頁面鏈接到我的新區域頁面。ASP.NET MVC3鏈接區域「無法找到資源」
@Html.ActionLink("Tube Record Form", "BearingAssemblyForm", "_HiCT", new { area = "HICT" }, null)
public class HICTAreaRegistration : AreaRegistration
{
public override string AreaName
{
get
{
return "HICT";
}
}
public override void RegisterArea(AreaRegistrationContext context)
{
context.MapRoute(
"HICT_default",
"HICT/{controller}/{action}/{id}",
new {controller = "_HiCT", action = "BearingAssemblyForm", id = UrlParameter.Optional }
);
}
}
的資源不能被發現。 而且似乎與其相關聯的錯誤
請求的URL:/ HICT/HiCT/BearingAssemblyForm
控制器:HiCT, 查看/動作:BearingAssemblyForm,面積:HICT。
我會怎麼樣?
非常感謝。
請看看這個 http://stackoverflow.com/questions/6554561/troubleshooting-the-resource-cannot-be-found-error – 2012-08-06 17:07:27
的http://計算器。com/questions/6554561 /疑難解答資源不能找到錯誤 – 2012-08-06 17:08:51