I'm looking for a routing option similar to the nested RESTFul routes functionality available through Rails. The SimplyRestful project on MvcContrib doesn't appear to be active any longer nor does it appear to be current with the 1.0 MVC release.
This is the uri scheme I'm looking for,
/Activity/10/Task/1/Edit or /Activity/10/Task/Edit/1
I simply haven't been able to get it to work and all the documentation I've run across describes the non-nested scenario. It doesn't seem like it'd be that difficult....
This is what I've been working with...
routes.MapRoute(null, "Activity/{activityId}/Task/{action}/{id}", new { controller = "Task", action = "Edit", activityId = "", id = "" });