vote up 0 vote down star

Hi,

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

flag

45% accept rate

1 Answer

vote up 2 vote down

I think this should do it.

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

Your Answer

Get an OpenID
or

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