Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.