Cristian Szpisjak
Cristian Szpisjak

Reputation: 2469

ASP.NET MVC multi-level areas

I was wondering if creating an area in another area is possible. Have you done it? Or it can be done?

Upvotes: 0

Views: 353

Answers (1)

NightOwl888
NightOwl888

Reputation: 56859

No, it is not possible.

However, as an alternative to areas, you could go with MvcCodeRouting, which allows multiple levels of controllers and automatically structures the routes accordingly.

Full Disclosure: I am not involved with the MvcCodeRouting project, nor have I used it personally.

Upvotes: 1

Related Questions