views:

154

answers:

1

I have a VS 2010 MVC2 .NET 4.0 web application. ASP.NET tracing is enabled both in the Page directive (Trace="true) and in the Web.config:

<trace enabled="true" 
       requestLimit="10"
       pageOutput="true"
       traceMode="SortByTime" 
       localOnly="true" 
       writeToDiagnosticsTrace="true"
       />

A standard trace listener is also configured in the Web.config:

<trace autoflush="true" indentsize="4">
  <listeners>
    <add name="WebPageTrace" type="System.Web.WebPageTraceListener, System.Web, Version=4.0.30319.1, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
    <add name="TextWriterTrace" type="System.Diagnostics.TextWriterTraceListener" initializeData="textListener.log" />
  </listeners> 
</trace>

Tracing works fine from the controller, but when I add a Trace in the View (.aspx) nothing ever shows:

<% System.Diagnostics.Trace.WriteLine("Message System.Diagnostics.Trace from View"); %>
<% Page.Trace.Write("Message Page.Trace from View"); %>

Is this supposed to work? Is there something else that is needed to enable Tracing from a View?

Thanks

A: 

I have the same exact problem. trace is enabled in web.config and on the @Page level. When you debug the application I can see that the trace is being written, yet when the trace comes up it does not display what was written.

Mike