Can someone please tell me why, with a url like this...
http://localhost:22220/groups/go/1234/2525?name=Bob
This route mapping doesn't match...
routes.MapRoute(null, // Route name
"groups/go/{groupId}/{userId}/{name}",
new { controller = "Groups", action = "Go" });
But this route mapping appears to match? (Using Phil Haack's Route Tester, this is the 'Generated URL')...
context.MapRoute("Teams_Default",
"Teams/{controller}/{action}/{id}",
new { id = UrlParameter.Optional });
http://localhost:22220/groups/go/1234/2525/Bobto match your route?