Configures the ASP+ trace service.
<tracing enabled="[true/false]" requestlimit="[Integer]" pageoutput="[true/false]" />
You can configure the <tracing> section using the following attributes:
Attribute | Description |
---|---|
enabled | Indicates whether tracing is enabled for an application (default is false). |
requestlimit | Number of trace requests to store on the server (default is 10). |
pageoutput | Indicates whether trace information should be rendered at the end of each page – or only be accessible via the trace utility. |
<configsections> <add name="tracing" type="System.Web.Config.TraceConfigHandler"> </configsections> <tracing enabled="false" requestlimit="15" pageoutput="true" />
Contained Within: <configuration>
Web Platform: IIS 5.0
Configuration File: config.web
Configuration Section Handler:
System.Web.Config.TraceConfigHandler
ASP+ Configuration Concepts