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")
Join MindStick Community
You need to log in or register to vote on answers or questions.
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: