up vote 0 down vote favorite
share [g+] share [fb]

I have a route where I want to set a constraint on the "action" paramter. It has to be either "Car" or "Boat"

link|improve this question

55% accept rate
feedback

1 Answer

I think this should do it.

route.MapRoute("CarOrBoat", "{controller}/{action}/{id}",
                new { id = 0 },
                new {action = @"Car|Boat" }
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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