I'm using ASP.NET MVC 2. When in Debug mode, there is a very consistent 5-10 second delay on every other request to the server before HttpApplication_BeginRequest() is hit in Global.asax
It happens exactly every other request. In Release mode it is fast always but it's causing me problems testing things in Debug mode. I looked at the call stack but the only thing before the HttpApplication_BeginRequest() is "External Code" so I can't tell what's happening. How can I find out what is introducing this lag in the pipeline? Thanks.