ASP.NET MVC Hierarchy Url Routing?

I'm pretty sure that the route handler tokenizes on the slash character so you won't be able to have a category that includes a slash -- though escaping it might work, not sure about that. You might want to format your URL as: 2009/World+Asia/08/12/bla-bla-bla This should translate the category as "World Asia If that doesn't work then perhaps you need another route that matches on subcategory as well {year}/{category}/{subcategory}/{month}/{day}/{name}.

I'm pretty sure that the route handler tokenizes on the slash character so you won't be able to have a category that includes a slash -- though escaping it might work, not sure about that. You might want to format your URL as: /2009/World+Asia/08/12/bla-bla-bla This should translate the category as "World Asia". If that doesn't work then perhaps you need another route that matches on subcategory as well.

{year}/{category}/{subcategory}/{month}/{day}/{name}.

Add another rule to your routing with the name parameter.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions