Hello.
I'm developing an ASP.NET WebForm application with Visual Studio 2008 SP1 and C#.
I've defined the following listener on Web.Config:
<system.diagnostics>
    <trace>
        <listeners>
            <add name="myListener" type="System.Diagnostics.TextWriterTraceListener" initializeData="D:\Logs\logWeb.txt" />
        </listeners>
    </trace>
</system.diagnostics>
How can redirect output from OutPut Window to this listener? All sentences like this:
System.Diagnostics.Trace.WriteLine("IntegratedManaged: ResolveCulture");
or
System.Diagnostics.Debug.WriteLine("IntegratedManaged: ResolveCulture");
are shown on output window.