In a visual studio 2008 project, how can one structure his controllers to accessible in the following directive?
http://localhost/MyWebsite/api/users/get/1
Both /api/ and /users/ are controllers "get" being a method of "users" with 1 as the parameter
Essentially I am talking about achieving REST i would assume.
Any ideas?
Thanks, Nick
Fixed
Phil Haack has developed an extension called Areas which allows one to group his controllers in an ASP.Net MVC project. Grouping Controllers