Skip to main content
.NET Framework Class Library
PageTrace Property

Gets the TraceContext object for the current Web request.

Namespace:   System.Web.UI
Assembly:  System.Web (in System.Web.dll)
Syntax
<[%$TOPIC/xd3h02y7_en-us_VS_110_2_0_0_0_0%](False)> _
Public ReadOnly Property Trace As [%$TOPIC/xd3h02y7_en-us_VS_110_2_0_0_0_1%]
[[%$TOPIC/xd3h02y7_en-us_VS_110_2_0_1_0_0%](false)]
public [%$TOPIC/xd3h02y7_en-us_VS_110_2_0_1_0_1%] Trace { get; }
[[%$TOPIC/xd3h02y7_en-us_VS_110_2_0_2_0_0%](false)]
public:
property [%$TOPIC/xd3h02y7_en-us_VS_110_2_0_2_0_1%]^ Trace {
	[%$TOPIC/xd3h02y7_en-us_VS_110_2_0_2_0_2%]^ get ();
}
[<[%$TOPIC/xd3h02y7_en-us_VS_110_2_0_3_0_0%](false)>]
member Trace : [%$TOPIC/xd3h02y7_en-us_VS_110_2_0_3_0_1%] with get

Property Value

Type: System.WebTraceContext
Data from the TraceContext object for the current Web request.
Remarks

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.

Examples

The following code example demonstrates accessing the TraceContextIsEnabled property and the TraceContextWrite method through the Trace property. This code calls the Write method only when tracing is enabled for the Page object. If it is not enabled, this code will not run, which can help reduce overhead for your application.

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());
  }
}
Version Information

.NET Framework

Supported in: 4.5, 4, 3.5, 3.0, 2.0, 1.1, 1.0
Platforms

Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.