我刚刚创建了一个新区域来组织我的代码。但目前我无法将它从我的“基础”或“根”索引页面链接到我的新区域页面。
@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。
我怎么会喜欢这个?
太感谢了。