Visual Studio 2008 checkpoint not working

I am working on an ASP.NET project and I cannot get breakpoints to work! The project does not stop when I place a breakpoint. It seems where I put a breakpoint.

I'm in debug mode; I am using IE 8, Windows 7;

Has anyone had this problem?

+4
source share
4 answers

From my experience, before you hit F5 for debugging, do BUILD and ReBuild. Then press F5 and it should work (9 out of 10 times)!

NTN

+7
source

You: 1) Run the program in debug mode so that VS automatically connects to the process at startup? or

2) Manually attach an ASP.NET workflow that is already running through Debug..Attach to Process?

3) You set debug = "true" in the <compilation> web.config element, that is: <compilation defaultLanguage = "C #" debug = "true">

4) If this is a client-side jscript breakpoint, did you enable script debugging in Tools .. Internet options ... Added ..... check the "Disable script Debugging" checkbox?

Submit answers to them, and then you can get additional help

+2
source

Is debugging set to true in web.config as well as in build mode?

<compilation debug="true"> 
+1
source

If you are using IE8, you need to make the following settings

About registering HKEY_LOCAL_MACHINE \ SOFTWARE \ Microsoft \ Internet Explorer \ Main

Default value: DWORD TabProcGrowth Value 0

0
source

Source: https://habr.com/ru/post/1307794/


All Articles