25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

16 lines
408 B

  1. using System.Web.Mvc;
  2. using System.Web.Routing;
  3. namespace Learun.Application.Website
  4. {
  5. public class MvcApplication : System.Web.HttpApplication
  6. {
  7. protected void Application_Start()
  8. {
  9. AreaRegistration.RegisterAllAreas();
  10. FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
  11. RouteConfig.RegisterRoutes(RouteTable.Routes);
  12. }
  13. }
  14. }