October 2001
Intermediate to advanced
376 pages
7h 3m
English
To use tracing in your ASP.NET web application, you need to enable it. This can be done at either the page level or the application level.
Enabling tracing at the page level entails adding the Trace attribute to the @Page directive, like this:
<%@ Page Language="C#" Trace=="true" %%>
If the Trace attribute has a value of true,
tracing information will be displayed at the bottom of your ASP.NET page after the entire
page has been rendered. Alternatively, you can include the TraceMode attribute. The value
that ...
Read now
Unlock full access