Consider the following route:
routes.MapRoute( \"Service\", // Route name \"service/\", // URL with parameters new {controller =
In your page load event add:
Dim rawUrl As String = HttpContext.Current.ApplicationInstance.Request.RawUrl If Not rawUrl.EndsWith("/") Then HttpContext.Current.ApplicationInstance.Response.RedirectPermanent(String.Format("~{0}/", rawUrl)) End If