public class Global : System.Web.HttpApplication { void Application_Start(object sender, EventArgs e) { RegisterRoutes(RouteTable.Routes); } public static void RegisterRoutes(RouteCollection routeCollection) { routeCollection.MapPageRoute("", "/Store/Pages", "~/.aspx"); } }
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)