标签: asp.net asp.net-mvc asp.net-mvc-5 startup global-asax
ASP.NET MVC 5应用程序中没有 Global.aspx.cs 类,我可以使用方法Application_Start()和Application_End()。 有没有办法在MVC 5应用程序中调用这些方法?
Application_Start()
Application_End()
答案 0 :(得分:1)
您可以按照here手动将Global.asax添加到项目中。
Global.asax
否则,您可以在Configuration(IAppBuilder app)中使用Startup.cs或构造函数。如here所述,Configuration被称为“稍晚”,而不是Application_Start。
Configuration(IAppBuilder app)
Startup.cs
Configuration
Application_Start