PagesEnableSessionState 列舉
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
用於決定單一 Web 網頁或整個 Web 應用程式的工作階段狀態啟動過程 (Activation)。
public enum class PagesEnableSessionState
public enum PagesEnableSessionState
type PagesEnableSessionState =
Public Enum PagesEnableSessionState
- 繼承
欄位
False | 0 | 工作階段狀態被暫止。 |
ReadOnly | 1 | 工作階段狀態已啟用,但無法寫入。 |
True | 2 | 工作階段狀態已啟用。 |
範例
下列組態檔摘錄顯示如何以宣告方式使用列舉的值 PagesEnableSessionState ,以指定是否啟用會話狀態。
<system.web>
<pages enableSessionState="true" />
</system.web>
下列程式代碼範例示範如何使用 PagesEnableSessionState 列舉搭配 PagesSection 型別。
// Get the current EnableSessionState property value.
Console.WriteLine(
"Current EnableSessionState value: '{0}'",
pagesSection.EnableSessionState);
// Set the EnableSessionState property to
// PagesEnableSessionState.ReadOnly.
pagesSection.EnableSessionState =
PagesEnableSessionState.ReadOnly;
' Get the current EnableSessionState property value.
Console.WriteLine( _
"Current EnableSessionState value: '{0}'", pagesSection.EnableSessionState)
' Set the EnableSessionState property to
' PagesEnableSessionState.ReadOnly.
pagesSection.EnableSessionState = PagesEnableSessionState.ReadOnly
備註
此列舉會決定整個 Web 應用程式的工作階段狀態啟用。 此值可用於 pages
組態檔區段,以影響 Web 應用程式中所有.aspx頁面,以取得組態檔的範圍。 此 PagesSection 類型允許以程式設計方式存取組 pages
態區段。