Guest User

Untitled

a guest
Nov 21st, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. routes.MapRoute(
  2. name: "Default",
  3. url: "{action}/{path}",
  4. defaults: new { controller = "Home", action = "Index" }
  5. );
  6.  
  7. routes.MapRoute(
  8. name: "Default",
  9. url: "{action}/{path}/{extension}",
  10. defaults: new { controller = "Home", action = "Index" }
  11. );
  12.  
  13. routes.MapRoute(
  14. name: "Default",
  15. url: "{action}/{path}.{extension}",
  16. defaults: new { controller = "Home", action = "Index" }
  17. );
Add Comment
Please, Sign In to add comment