I have a link in an ASP.NET MVC 4 application which I would like to refer to a Controller in the root area. I don't know where it goes wrong, but every time I try to make a reference to the root Controller, it gives empty string.
I have this HTML:
<li><a href="@Url.LogOut()" class="a signout icon-signout">Sign out</a></li>
And @Url.LogOut is an extension method:
public static string LogOut(this UrlHelper helper)
{
if (helper == null)
throw new ArgumentNullException("helper", "Parameter 'helper' of type UrlHelper is null");
return helper.Action("LogOut", "Account", new { area = "" });
}
In RouteConfig.cs, I had to modify the Default route mapping to redirect the initial request automatically to another area.
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional },
namespaces: new[] { "[Some namespace].Portal.Controllers" }
).DataTokens.Add("area", "Portal");
The produced HTML I received is without href value:
<a class="a signout icon-signout">Sign out</a>
Can anyone help me? Thanks a lot.