如何从ASP.NET Web应用程序的客户端进行跟踪?我被困在aspx.cs
文件中,我真的需要一些快速简单的调试。我试了System.Diagnostics.Trace.WriteLine
但没有成功:当我在浏览器中刷新页面时,DebugViewer中没有出现任何内容。
谢谢!
编辑:将Trace属性添加到我的aspx文件中的页面指令跟踪Trace.Write
,但我不想要所有其他批量跟踪(几百行)
编辑2 :我没有使用Visual Studio,如果仅用于跟踪,我也不想要它。
答案 0 :(得分:1)
你有几个选择
以下是MSDN文章How to: Enable Tracing for an ASP.NET Application
的链接您可以转到http://localhost:<portnumber>/trace.axd
如果您使用的是Visual Studio,则可以使用:
System.Diagnostics.Debug.WriteLine("This appears in the output window!")