I am writing one particular web app in ASP.NET 2.0 in debug mode.
Even when I step through the code, the IDE skips over every occurrence
of System.Diagnostics.Trace.WriteLine(), but honors
System.Diagnostics.Debug.WriteLine().
I have other web app's that run fine, Trace.WriteLine() actually
writes to the output window and my TraceListener catches it.
What can I configure / set so that this web app honors
Trace.Writeline()?
Thanks
Mike Placentra II - 14 Oct 2007 01:26 GMT
Have you set Trace.IsEnabled?
You can also set it at application-level in web.config.
<configration>
<system.web>
<trace enabled="true" />
-Michael Placentra II
On Oct 12, 2:30 pm, samueltil...@gmail.com wrote:
> I am writing one particular web app in ASP.NET 2.0 in debug mode.
>
[quoted text clipped - 9 lines]
>
> Thanks