In an MVC 3 project, I have two areas defined, Customer and Users. In the logical model, there are two types of Users, Corporate User, and regular user. Both share the same domain model 'Domani.User' with the difference being a corporate user has a parent Customer, a regular user does not.

Since so much of the logic and UI is shared between the two types of users, I wanted to reused the views and controllers. So when designing my controllers, I have an optional customerId parameter, along with a mandatory userId parameter.

The problem I am having is linking from the Customer Area to the User Area, which always results in a 404, resource not found error.

Here is the route that I've defined to link from the Customer to User Area.

    context.MapRoute(
        "CustomerCorpUser",
        "Customer/{customerId}/Users/{action}/{userId}",
        new { area = "User", controller = "Users", action = "Index", customerId = 0, userId = 0 }
        );

I am using a route link in my view. Which do resolve to the pattern defined in the route. I've tried using the above route, in both areas, and the main RouteRegistration, and all have the same error.

What is the proper to link between areas

link|improve this question

50% accept rate
feedback

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

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.