Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have the following website structure:

(Section/SubSection/Pages/1..n)

e.g.
News/Current
News/Archive
News/Current/Pages/23
News/Archive/Pages/3

If the User goes to /News I want them to default to News/Current, otheriwse they see a page above. Similarly,

Events/Latest
Events/London
Events/Latest/Pages/15
Events/Archive/Pages/4

I've got a controller setup for News and Events but how do I create the Actions and global.asax MapRoutes to handle my structure?

I don't want to use Areas for this, just simple Controllers and Actions please. Each View for a section will handle a ViewModel with a ContentPage property from the database?

So each Section will have a View, that will be populated with a ContentPage PartialView.

Thanks

share|improve this question

1 Answer

up vote 1 down vote accepted

You got two alternatives:

  1. Use Areas
  2. Create routes for Archive and Latest which makes the section after Pages a parameter containing the page.

Update

The route:

routes.MapRoute(
    "MySuperRoute",
    "{controller}/{section1}/{section2}/{id}",
    new { controller = "Home", action = "TheHandlingAction", id = UrlParameter.Optional }
);

And the action:

public ActionResult TheHandlingAction(string section1, string section2, int id)
{
}
share|improve this answer
Thanks. I'm not going down the Areas route for this. For option 2, that 'SubSection' level could have 1..n options not just Archive + Latest e.g. locations like London/Cardiff etc. I need an example of a MapRoute to handle these if you can? That's where I'm getting stuck along with sensible Controller Actions to match my route options above? Or do I just need one Action as they are all ContentPage essentially? – BarryFanta Mar 6 '12 at 10:17
Any simple MapRoute examples anyone, for what I'm trying to achieve? – BarryFanta Mar 6 '12 at 12:41
It's unclear what you want to achieve with Pages/15 – jgauffin Mar 6 '12 at 12:49
Will return a ContentPage from my DB, id=15 for whichever Section I'm in. e.g. News/Current/Pages/23 or Events/Cardiff/Pages/12. Both those examples are linked pages from the top-level nav e.g. News/Current and Events/Cardiff respectively. Main point is that Current or Cardiff could be anything, so I don't want to use a separate action for all of those. What I need are routes to handle them all. So need to know how to write a MapRoute for my 2 options: 1) /Section/SubSection 2) /Section/SubSection/Pages/Id - hope this is clearer? Also the Controller Actions to go with them as well. – BarryFanta Mar 6 '12 at 13:10
Is Current/CarDiff actions or controllers? – jgauffin Mar 6 '12 at 13:32
show 5 more comments

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.