Mini Kabibi Habibi
<%@ Application Language="vb" %>
<script RunAt="server">
Sub Application_Start(ByVal sender As Object, ByVal e As EventArgs)
RegisterRoutes(System.Web.Routing.RouteTable.Routes)
DevExpress.Web.ASPxClasses.Internal.DemoUtils.RegisterDemo("VideoPortal")
End Sub
Sub RegisterRoutes(ByVal routes As System.Web.Routing.RouteCollection)
routes.Ignore("Content/{*file}")
routes.Ignore("Scripts/{*file}")
routes.MapPageRoute("Main", "", "~/Default.aspx")
routes.MapPageRoute("TagFiltering", "Tag/{tagName}", "~/Default.aspx")
routes.MapPageRoute("WatchVideo", "Watch/{watchVideoTitle}", "~/Default.aspx")
routes.MapPageRoute("VideoStatistics", "Statistics/{statisticsVideoTitle}", "~/Default.aspx")
End Sub
</script>