共用方式為


TraceSection.PageOutput 屬性

定義

取得或設定數值,表示 ASP.NET 追蹤資訊是否要附加到每個輸出網頁。

public:
 property bool PageOutput { bool get(); void set(bool value); };
[System.Configuration.ConfigurationProperty("pageOutput", DefaultValue=false)]
public bool PageOutput { get; set; }
[<System.Configuration.ConfigurationProperty("pageOutput", DefaultValue=false)>]
member this.PageOutput : bool with get, set
Public Property PageOutput As Boolean

屬性值

如果追蹤資訊會附加到每個網頁,則為 true,否則為 false。 預設為 false

屬性

範例

下列程式碼範例示範如何使用 PageOutput 屬性。 此程式碼範例是針對 類別提供的較大範例的 TraceSection 一部分。


// Get the current PageOutput property value.
Boolean pageOutputValue = traceSection.PageOutput;

// Set the PageOutput property to true.
traceSection.PageOutput = true;

' Get the current PageOutput property value.
Dim pageOutputValue As Boolean = traceSection.PageOutput

' Set the PageOutput property to true.
traceSection.PageOutput = True

適用於