调试器未命中 .NET 代码中的断点

发布于 2024-12-14 06:40:58 字数 205 浏览 0 评论 0原文

我有一个使用 VS 2005 运行的 C# 代码。

我在代码中设置了几个断点。当我在调试模式下运行代码时,没有到达任何断点。

不过代码运行成功。 我尝试在基本的 Page_load 处放置断点。

我已经尝试清除 Windows 文件夹中的临时 ASP.NET 文件、清理解决方案、从代码存储库再次获取所有文件。但还是一样。

I have a C# code which I am running using VS 2005.

I have put up several breakpoints in the code. When I run the code in debug mode, none of my breakpoints are reached.

However the code runs successfully.
I tried putting breakpoints at basic Page_load.

I have already tried clearing my Temporary ASP.NET files in Windows folder, cleaning the solution, getting all the files again from the code repository. But it is still the same.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

预谋 2024-12-21 06:40:58

我发现这和VS2005和IE8有关。它们在调试时都不能很好地工作。我从以下链接获得此信息 -
VS 2005 - IE8 问题

最终,我做了一些更改,现在可以通过代码进行调试。以下是我采取的步骤 -

  • 转到调试 -->附加到进程...
  • 选择 aspnet_wp.exe 进程并单击附加。
  • 进入控制面板-->管理工具 --> IIS
  • 转至您的网站/应用程序起始页。
  • 右键单击并点击浏览。

之后执行在所有断点处停止。

我知道这是一个费力的过程,但至少在我不得不处理设置警报框之后它正在发挥作用。

I found out that it has something to do with VS2005 and IE8. Both of them doesn't work well while debugging. I got this information from following link -
VS 2005 - IE8 issue

Eventually, I made some changes and now can debug through the code. Following are the steps I took -

  • Go to Debug --> Attach to Process...
  • Select aspnet_wp.exe process and click Attach.
  • Go to Control Panel --> Administrative Tools --> IIS
  • Go to your website/application start page.
  • Right click and hit browse.

After which the execution stops at all the breakpoint.

I know this is laborious procedure, but at least it is working after me having to deal with putting up alert boxes.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文