We have developed our custom HttpModule.
Now I want to add ability to trace it, and see the trace results in standart ASP.NET tracing page (or trace.axd). I try to use System.Diagnostics.Trace.Write("FILTER TEST");
to write trace information. This works everywhere except of HttpModule. I added a trace listener in web.config, but it only shows traces that were written during the page lifecycle. How i can see the trace information that i write in HttpModule and how I can add this information to ASP.NET trace page?
<trace>
<listeners>
<add name="WebPageTraceListener"
type="System.Web.WebPageTraceListener, System.Web, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
</listeners>
</trace>