Global.asax ファイルに次のコードがあります。
Sub Application_Start(ByVal sender As Object, ByVal e As EventArgs)
' Code that runs on application startup
RegisterRoute(RouteTable.Routes)
End Sub
'about.aspx
Sub RegisterRoute(ByVal _routes As RouteCollection)
With _routes
.MapPageRoute("homepage", "Home", "~/default.aspx")
.MapPageRoute("aboutpage", "About", "~/about.aspx")
.MapPageRoute("producs", "Products", "~/products/Default.aspx")
.MapPageRoute("adFin", "Products/{name}", "~/products/Default.aspx")
.MapPageRoute("news", "News", "~/news.aspx")
.MapPageRoute("contact", "Contact", "~/contact.aspx")
End With
End Sub
Product/Myproductname に移動するときはいつでも問題なく動作しますが、ホームに戻ると、URL は引き続き Home ではなく Product/Home と表示されます