ASP.NET MVC ActionLink outside area
Try this : <%= Html.ActionLink(“Back”, “Index”, “Home”, new { area = “” }, null) %> When using Areas, you should always specify the area your are calling in your ActionLinks by adding a route value as above, If the link is outside the area (as in your case), just use an empty parameter for the … Read more