vote up 4 vote down star

I am trying to come up with an approach to create "dynamic" routing. What I mean, exactly, is that I want to be able to assign the controller and action of a route for each hit rather than having it mapped directly.

For example, a route may look like this "path/{object}" and when that path is hit, a lookup is performed providing the appropriate controller / action to call.

I've tried discovering the mechanisms for creating a custom route handler, but the documentation / discoverability is a bit shady at the moment (I know, its beta - I wouldn't expect any more). Although, I'm not sure if thats even the best approach and perhaps a controller factory or even a default controller/action that performs all of the mappings may be the best route (no pun intended) to go.

Any advice would be appreciated.

flag

79% accept rate

2 Answers

vote up 6 vote down check

Please take a look at this little manual: MVC.Net Routing, section Option 3 - it describes how to build your custom request processing chain.

p.s. sorry for self-advertisement :)

link|flag
vote up 1 vote down

maxnk - thank you so much! That is exactly what I was looking for!

link|flag

Your Answer

Get an OpenID
or

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