Is it possible to define a route in MVC that dynamically resolves the action based on part of the route?

For example:

`/products/create/widget`

Would resolve to ProductsController.CreateWidget(Widget);

I want the route to be dynamic:

routes.MapRoute(
    "Create",
    "/products/create/{productType}",
    new { controller = "Products", action = "Create{productType}" }
);

I need to have multiple Create actions that take in different model types but I don't want to add a new route every time I add one. Without appending the name to the action I get an ambiguous method error. Is it possible to do this?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

I think you probably need to create your own custom route object derived from the RouteBase where you can assign action based on particular part of the Url. Take a look at this example.

link|improve this answer
Thanks. Was hoping for a simpler solution. I think I will just add the routes each time. It will not be a very frequent occurrence to add new types. – Dismissile Feb 7 at 15:29
Well it's definitely not a common scenario, so.. – Denis Ivin Feb 7 at 19:05
feedback

Your Answer

 
or
required, but never shown

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