Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

break point is not hitting while debugging

Tags:

c#

asp.net

Possible exact duplicates:

Reason for VS.NET ‘current breakpoint will not be hit’ warning?
Why does Visual Studio sometimes not go to my breakpoints?
Why would the debugger not be stopping at a breakpoint in my ASP.NET application?

while debugging,the modified source code the break point is not hitted for a particular aspx page and the following error is shown in the break point

"the break point will not be currently hit.the source code is different from the original version"

but for other page it is working fine.

like image 651
subash Avatar asked Dec 14 '09 07:12

subash


2 Answers

It worked for me. Try this.

First try rebuilding your project by right mouse click the project > Rebuild If that doesn't work, try a clean of the project (right mouse click on the project > clean)

If that didn't work check this:

Right mouse click your project
select [Properties]
select the [Build] tab
make sure [Define DEBUG constant] and [Define TRACE constant] are checked
Click the [Advanced] button at the bottom of the Build tabpage
Make sure that [Debug Info:] is set to [full]
Click [OK] and rebuild the project ;-)

Hope that works for you! (step 6 generates the .pdb files, these are the debugging symbols)

like image 95
Zia Ur Rahman Avatar answered Sep 19 '22 13:09

Zia Ur Rahman


Some times this occurs if the sourcecode is been copied from the network folder, it messes up the symbol settings. Below solution works for me everytime

  • In debug mode, select debug->windows->modules
  • Check your dll symbolStatus . Make sure that it is loaded into the project (i am sure now the status is not loaded )
  • Right click your dll, click symbol settings.
  • And manually add your symbol path (.pdb file path)
  • And again right click the dll, and click load symbols

Hope this helps

like image 24
RameshVel Avatar answered Sep 19 '22 13:09

RameshVel