debugging does not stop at break point [closed]
in my project i insert break point in my c# file the debugger check the whole file gives output but it doesnot stop at the break point and as aresult i could not check the error in it plz if anybody know the answer mail me at jagdeepgupta813@gmail.com
This could be due to the code not being the same version as the assembly.
Have a look at this link
Breakpoint not hooked up when debugging in VS.Net 2005
Some questions:
- Did you build the project in Debug mode?
- Did you "start with debugging" (F5 instead of Ctrl+F5)
- in web.config, do you have debug=true in the
<compilation>
node?
精彩评论