Global.asax.cs 631 B

123456789101112131415161718192021222324252627
  1. using System;
  2. namespace WebApplication
  3. {
  4. public class Global : System.Web.HttpApplication
  5. {
  6. void Application_Start(object sender, EventArgs e)
  7. {
  8. //// 在应用程序启动时运行的代码
  9. //AuthConfig.RegisterOpenAuth();
  10. //RouteConfig.RegisterRoutes(RouteTable.Routes);
  11. }
  12. void Application_End(object sender, EventArgs e)
  13. {
  14. // 在应用程序关闭时运行的代码
  15. }
  16. void Application_Error(object sender, EventArgs e)
  17. {
  18. // 在出现未处理的错误时运行的代码
  19. }
  20. }
  21. }