我使用Trace.TraceInformation
语句在基于ASP.Net MVC的应用程序中实现了一些调试代码。
如何配置我的web.config或IIS7.5服务器以启用这些语句的记录,以及在哪里可以查看它们?
答案 0 :(得分:1)
启用应用程序跟踪:
在Web.config
<configuration>
<system.web>
<trace enabled="true" pageOutput="false" requestLimit="40" localOnly="false"/>
</system.web>
</configuration>
您可以在 trace viewer
。
<强>来源强>