Gets the TraceContext object for the current Web request.
Assembly: System.Web (in System.Web.dll)
<BrowsableAttribute(False)> _
Public ReadOnly Property Trace As TraceContext
Get[BrowsableAttribute(false)]
public TraceContext Trace { get; }[BrowsableAttribute(false)]
public:
property TraceContext^ Trace {
TraceContext^ get ();
}[<BrowsableAttribute(false)>]
member Trace : TraceContext
Property Value
Type: System.WebData from the TraceContext object for the current Web request.
Tracing tracks and presents the execution details about a Web request. For trace data to be visible in a rendered page, you must enable tracing at the page or application level.
Tracing on a page is disabled by default. To enable tracing for a page, use the @ Page directive <% @ Page trace="true" %>. To enable tracing for an entire application, you must enable it in the application's configuration file, Web.config, which resides in the root directory of the application. For more information, see ASP.NET Tracing Overview.
The following code example demonstrates accessing the TraceContext
If (Trace.IsEnabled) Then
Dim I As Integer
For I = 0 To DS.Tables("Categories").Rows.Count - 1
Trace.Write("ProductCategory",DS.Tables("Categories").Rows(I)(0).ToString())
Next
End If
if (Trace.IsEnabled)
{
for (int i=0; i<ds.Tables["Categories"].Rows.Count; i++)
{
Trace.Write("ProductCategory",ds.Tables["Categories"].Rows[i][0].ToString());
}
}
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.