Guest User

Untitled

a guest
Apr 23rd, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. public static void RegisterRoutes(RouteCollection routes)
  2. {
  3. routes.MapPageRoute("", "{*path}", "~/GisResponser.aspx");
  4. }
  5.  
  6. protected void Application_Start()
  7. {
  8. AreaRegistration.RegisterAllAreas();
  9.  
  10. RegisterGlobalFilters(GlobalFilters.Filters);
  11. RegisterRoutes(RouteTable.Routes);
  12. }
Add Comment
Please, Sign In to add comment