I am new to ASP.NET MVC.
We are writing the basic architecture for a new website and are using asp.net mvc3 for the presentation layer.
On the business side it has been decided that our new site should use an url structure that reflects the data hierarchy.
Example of a fictive url: http://mycraftsite.com/profesionals/tailors/patterns/persian/mediastyle/kiefalpattern
This does not conform to the controller/action/id pattern that I see in a lot of examples. Can an url structure like ours fit the MVC concepts?
Thanks
Thomas Holme
You could define your own route handler, similar to what’s done here:
MVC route with array of homogeneous parameters