Page.TraceEnabled Property
.NET Framework 3.0
This property supports the .NET Framework infrastructure and is not intended to be used directly from your code.
Sets a value indicating whether tracing is enabled for the Page object.
Namespace: System.Web.UIAssembly: System.Web (in system.web.dll)
/** @property */ public boolean get_TraceEnabled () /** @property */ public void set_TraceEnabled (boolean value)
public function get TraceEnabled () : boolean public function set TraceEnabled (value : boolean)
Not applicable.
Property Value
true if tracing is enabled for the page; otherwise, false. The default is false.In most circumstances, do not set this property in code. Set the Trace attribute to true in the @ Page directive in the .aspx file. When the page is requested, the dynamically generated class sets the property.
Community Additions
ADD
Show: