Debugging Application_Start and Module Initialization with IIS and Visual Studio
Posted by: Rick Strahls WebLog,
on 15 Dec 2011 |
View original | Bookmarked: 0 time(s)
Recently I've seen quite a few questions pop up in regards to debugging ASP.NET application initialization. Most commonly I see something along these lines: I'm trying to debug my ASP.NET application and am starting the Debugger, but it won't stop on code in my Application_Start event Yup, been there done that. What does Application_Start do? Application_Start is pseudo handler that ASP.NET checks for during initialization of an ASP.NET application - if one exists it's fired during the application's...