I have problem with generation of links I have an Area named "Administration", it also has a HomeController as a root, In the masterpage
<li>@Html.ActionLink("Home", "Index", "Home")</li>
<li>@Html.ActionLink("Admin", "Index", "Home", new {area = "Administration"})</li>
Also I inherited From Route, and the method GetVirtualPath accepts the parameter values which omits area key, and passes only controller and action.
Where did I go wrong?