从aspx.cs文件中跟踪

时间:2013-06-27 22:46:50

标签: c# asp.net frontend debugview outputdebugstring

如何从ASP.NET Web应用程序的客户端进行跟踪?我被困在aspx.cs文件中,我真的需要一些快速简单的调试。我试了System.Diagnostics.Trace.WriteLine但没有成功:当我在浏览器中刷新页面时,DebugViewer中没有出现任何内容。

谢谢!

编辑:将Trace属性添加到我的aspx文件中的页面指令跟踪Trace.Write,但我不想要所有其他批量跟踪(几百行)

编辑2 :我没有使用Visual Studio,如果仅用于跟踪,我也不想要它。

1 个答案:

答案 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!")