123456789101112131415161718192021222324252627 |
- using System;
- namespace WebApplication
- {
- public class Global : System.Web.HttpApplication
- {
- void Application_Start(object sender, EventArgs e)
- {
- //// 在应用程序启动时运行的代码
- //AuthConfig.RegisterOpenAuth();
- //RouteConfig.RegisterRoutes(RouteTable.Routes);
- }
- void Application_End(object sender, EventArgs e)
- {
- // 在应用程序关闭时运行的代码
- }
- void Application_Error(object sender, EventArgs e)
- {
- // 在出现未处理的错误时运行的代码
- }
- }
- }
|