I use ASP.NET MVC 2. In debug mode, there is a very consistent 5-10 second delay for every other request to the server before HttpApplication_BeginRequest () gets into Global.asax
This happens exactly for any other request. In Release mode, this is fast, but it causes me problems with testing things in debug mode. I looked at the call stack, but the only thing before HttpApplication_BeginRequest () is the "external code", so I can’t tell what is happening. How can I find out what introduces this lag into the pipeline? Thank.
source
share