Hi @Sanjay Chauhan ,
Per my research, this problem usually occurs because the web application is not able to pick up the .PDB from the Temporary ASP.NET Folder. You can refer to following steps
Check if you are not in release but in Debug.
When in debug:
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
- Make sure [Optimize Code] is unchecked
- 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 ;-)
(step 7 generates the .pdb files, these are the debugging symbols)
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.