18 lines
525 B
VB.net
18 lines
525 B
VB.net
Imports System
|
|
Imports System.Collections.Generic
|
|
Imports System.Linq
|
|
Imports System.Web
|
|
Imports System.Web.Mvc
|
|
Imports System.Web.Routing
|
|
|
|
Public Module RouteConfig
|
|
Public Sub RegisterRoutes(ByVal routes As RouteCollection)
|
|
routes.IgnoreRoute("{resource}.axd/{*pathInfo}")
|
|
|
|
routes.MapRoute(
|
|
name:="Default",
|
|
url:="{controller}/{action}/{id}",
|
|
defaults:=New With {.controller = "Home", .action = "Index", .id = UrlParameter.Optional}
|
|
)
|
|
End Sub
|
|
End Module |