System.diagnostics 和 System.Debug 无法通过页面方法工作
我们在使用 ASP .Net 的网页上有一个页面方法。我们尝试使用 System.Diagnostics 和 System.Diagnostics.Debug 放入跟踪语句。在 Visual Studio 2008 中,甚至不会命中该行的断点,但会命中其他行上的其他断点。
我们可以看到这两种方法都没有输出。
还有一个 Global.asax 错误捕获器在其他情况下工作正常,但在页面方法中没有被捕获。
为什么页面方法和 System.Diagnostics 不能很好地协同工作,有什么想法吗?
We have a Page Method on a web page using ASP .Net. We tried to put in a trace statement using both System.Diagnostics and System.Diagnostics.Debug. In Visual Studio 2008, the break point is not even hit for the line, but other break points on other lines are hit.
There is no output from either method that we can see.
There is also a Global.asax error catcher that works fine in other cases, but in the Page Method is not being catched.
Any ideas why a Page Method and System.Diagnostics do not play well together?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用 System.Diagnostics.Debugger.Log(0, null, "MessageString");
try using System.Diagnostics.Debugger.Log(0, null, "MessageString");