[Mono-dev] How do I set Trace

Robert Jordan robertj at gmx.net
Wed Jul 12 18:20:55 EDT 2006


Hey,

Marco Aurelio Castro wrote:
> Hello,
> 
>     How can I configure Web.config and an ASPX file to turn the trace 
> on? I wish to see the data in the respond screen.


<configuration>
         <system.web>
                 <trace
                         enabled="false"
                         requestLimit="10"
                         pageOutput="true"
                         traceMode="SortByTime"
                         localOnly="false"
                 />

....


I never used pageOutput="true". If it doesn't work you may
set it to "false" and get the trace from Trace.axd.

Robert




More information about the Mono-devel-list mailing list