GetVirtualPath not making any sense.
- by HeavyWave
Can anyone explain why this code with the given routes returns the first route?
routes.MapRoute(null, "user/approve", new { controller = "Users", action = "Approve" }),
routes.MapRoute(null, "user/{username}", new { controller = "Users", action = "Profile" }),
routes.MapRoute(null, "user/{username}/{action}", new { controller = "Users" }),…