Application_Start not being hit in ASP.NET web app

让人想犯罪 __ 提交于 2019-11-29 18:29:49

问题


I'm trying to debug something in the global.asax.cs file in an ASP.NET web app and have set a breakpoint in the Application_Start() event however that event is not getting fired when I start the web app inside VS2008. I'm targeting the 3.5 framework.

What could prevent this event from being fired? Or how could I have messed up the project such that this event is no longer wired up?


回答1:


If i remember correctly, Application_Start runs before the debugger can hook up to the application.

Try doing something else to check if the Application_Start method runs, like setting an application variable:

Application("app") = "started"

Then display the application variable in the page to see if it was set.




回答2:


One easy trick to debug newly written code in the global.asax file is to save the web.config file. Each time the config.file is saved, the application is stopped and started.

You could find useful information in this blog entry

Workaround: Debugging Global.aspx.cs Application_Start() with ASP.Net Web Server within Visual Studio

The reason behind this is that we do not kill the ASP.Net Web Server process after your every debug run and hence Application_Start() is not fired every time. There is a good reason why we do so... Starting ASP.Net Web Server process is an expensive task and in most of the scenarios recycling this process after every debug would adversely impact your performance... If you do not want to debug your Application_Start() method then probably you do not need to have the process restart and save performance most of the time...

One of the proposed workarounds:

You can go to your property pages of your web application and enable Edit & Continue like shown below:

(from the Visual Web Developer Team Blog)



来源:https://stackoverflow.com/questions/693020/application-start-not-being-hit-in-asp-net-web-app

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!