NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

<tracing> Section Handler

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.

Example:

<configsections>
   <add name="tracing" type="System.Web.Config.TraceConfigHandler">
</configsections>

<tracing enabled="false" requestlimit="15" pageoutput="true" />

Requirements

Contained Within: <configuration>

Web Platform: IIS 5.0

Configuration File: config.web

Configuration Section Handler:

System.Web.Config.TraceConfigHandler

See Also

ASP+ Configuration Concepts