You need to register routing in the global.asax file as per below:
Sub Application_Start(ByVal sender As Object, ByVal e As EventArgs) RegisterRoutes(Routing.RouteTable.Routes) End Sub Public Shared Sub RegisterRoutes(ByVal routeCollection As Routing.RouteCollection) routeCollection.MapPageRoute("DefPage", "", "~/common/webpage/default.aspx")
Markdown for AI
A clean, structured version of this page for AI assistants and LLMs.
We use cookies to ensure you have the best browsing experience on our website. By using our site, you
acknowledge that you have read and understood our
Cookie Policy &
Privacy Policy.
You need to register routing in the global.asax file as per below: