Ejemplo n.º 1
0
 protected void Application_Start(object sender, EventArgs e)
 {
     try
     {
         AlbianBootService.Start();
         if (null != _logger)
         {
             _logger.Info("应用程序启动!");
         }
     }
     catch (Exception exc)
     {
         if (null != _logger)
         {
             _logger.Error(exc.Message);
         }
     }
 }
Ejemplo n.º 2
0
 protected void Application_BeginRequest(object sender, EventArgs e)
 {
     AlbianBootService.RequestHandler();
 }