I have a web application that I could always run in Visual Studio, and it is perfectly debugging (breakpoints work, I can pause execution, etc.). Recently, behavior has unexpectedly changed, and several things have happened:
- I run debugging, it launches IE and loads the application, but after a few seconds (sometimes the page still does not appear) Visual Studio works as if debugging is stopped - I can edit the code in VS again, and the Play button on the toolbar included. The application continues to run in the IE window that just appears, but I'm not tied to it.
- For a few seconds, when VS is "debugging" because it is detaching, my breakpoints are displayed as hollow - as if I am set to "Release" and they will not be deleted. In fact, I have a breakpoint set to Page_Load and it skips right. I checked and I am set to debug mode, although there is no compilation mode drop-down list on the toolbar (I checked the build properties to make sure I was in debug mode).
Can anyone shed some light here?
source share