vote up 2 vote down star
1

I was wondering if I could create a routing map with one more higher level than the controller. The typical routing would include "/controller/action/id". What I am looking for is something like "section/controller/action/id" or "controller/section/action/id". How can i do this?

flag

41% accept rate
Need more clarification: What does your section look like? Is it a path or a token? And do you know all your sections before hand or do you want a route that can handle any section? – DSO Oct 26 at 8:24
Is this not the same as stackoverflow.com/questions/1623605/… – bzlm Oct 26 at 17:38

2 Answers

vote up 3 vote down check

No problem. Just create a route the URL of which is, for example

path/to/my/application/{controller}/{action}/{id}

...and supply a default controller and action as usual.

A concrete example of this is

context.MapRoute(
    "Admin_default",
    "admin/{controller}/{action}/{id}",
    new { controller = "AdminHome", action = "Index", id = "" }
);

This will map, for example, the following URLs:

/admin/                   => AdminHomeController.Index
/admin/adminhome/         => AdminHomeController.Index
/admin/other/             => OtherController.Index
/admin/statistics/view/50 => StatisticsController.View(50)

Note, though, that if you also have a default route, for example like this:

context.MapRoute(
    "Default",
    "{controller}/{action}/{id}",
    new { controller = "Home", action = "Index", id = "" }
);

...then controller action methods in the Admin routing may also be accessible via this route. Use the URL Routing Debugger to find out for sure.

link|flag
To avoid any confusion, that should be "pathToApplication/ExtraBits/{controller}/..." where pathToApplication is the root of the IIS Application (i.e. "~"). – Richard Oct 26 at 11:41
I figured it out myself. Anyways, thanks for the help. – dattebayo Oct 27 at 6:16
vote up 0 vote down

Are Areas the answer?

link|flag
Areas are orthogonal to this. You can combine this with areas. – bzlm Oct 26 at 17:09

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.