Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a news site with articles tagged in categories.

My Controller is called "Category" and this URL:

http://mysite.com/Category/Sport

passes Sport to action Index in controller Category.

I want to allow the following URLs:

http://mysite.com/Sport/Hockey
http://mysite.com/Sport/Football
http://mysite.com/Science/Evolution

Which passes all category information to action Index in controller Category.

How do I create a catch-all route that handles all these and shuttles them to category?

share|improve this question

1 Answer

up vote 4 down vote accepted

There's a pretty good response to my question along these lines here.

share|improve this answer
hanks jmcd ... that got me on the right track and I figured out the rest. (stackoverflow is great) – WayneDV Oct 21 '08 at 19:08

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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