Currently, the breakpoint will not be deleted. No characters were loaded for this document

I am dealing with a perplexing situation here and need any help I can get. I am using Visual Studio 2008 and have a dev site running in IIS. When I join a process running in IIS, it successfully joins (no errors). However, when I try to debug, nothing happens. I closed my browser, restarted the application pool and website, cleared the cache and even forced to rebuild the visual studio. However, I cannot enter the code. Any idea what I might have wrong here?

Currently, the breakpoint will not be deleted. No characters have been loaded for this document.

+3
source share
3 answers

Your characters may be incorrect or missing. In rare cases, you may need to enter the function through the assembly, only then VS will pick up that you are actually calling your component.

+1
source

Make sure you install compilation debug="true" in the web.config file?

+1
source

I believe you need to debug a website from Visual Studio to hit breakpoints. Use the green play button or use F5 or just go to Debug> Start Debugging.

0
source

All Articles