Advertisement
gyrospring

✒ 0007.0030 VS2019 VB MVC5 Razor RouteConfig.vb

Apr 18th, 2019
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. Public Module RouteConfig
  2.  
  3.  
  4.  
  5.  
  6. Public Sub RegisterRoutes(ByVal routes As RouteCollection)
  7.  
  8.  
  9. routes.IgnoreRoute("{resource}.axd/{*pathInfo}")
  10.  
  11. routes.MapRoute(
  12. name:="Home",
  13. url:="{Id}/{*Path}",
  14. defaults:=New With {.controller = "Home", .action = "Index", .id = UrlParameter.Optional}
  15. )
  16.  
  17.  
  18. End Sub
  19.  
  20.  
  21.  
  22.  
  23. End Module
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement