G
Ginette Latour
In the Visual Studio .NET reference For Dummies book,
there is a section that describe how to use the
application level tracing feature with ASP.NET
application. This is done with setting the appropriate
parameters in the Web.config file.
So here is the trace section of my Web.Config file;
<trace enabled="true" requestLimit="10"
pageOutput="false" traceMode="SortByTime"
localOnly="false" />
My problem is that when I run the application, I cannot
find the trace.axd file that should be created in the
application root directory (according to the book).
Is this feature working or not? If it is, what are the
things that could prevent the trace file to be created?
there is a section that describe how to use the
application level tracing feature with ASP.NET
application. This is done with setting the appropriate
parameters in the Web.config file.
So here is the trace section of my Web.Config file;
<trace enabled="true" requestLimit="10"
pageOutput="false" traceMode="SortByTime"
localOnly="false" />
My problem is that when I run the application, I cannot
find the trace.axd file that should be created in the
application root directory (according to the book).
Is this feature working or not? If it is, what are the
things that could prevent the trace file to be created?