PagesSection.EnableViewStateMac 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定值,指定當頁面從用戶端回傳時,ASP.NET 是否該在頁面的檢視狀態執行訊息驗證碼 (MAC)。
public:
property bool EnableViewStateMac { bool get(); void set(bool value); };
[System.Configuration.ConfigurationProperty("enableViewStateMac", DefaultValue=true)]
public bool EnableViewStateMac { get; set; }
[<System.Configuration.ConfigurationProperty("enableViewStateMac", DefaultValue=true)>]
member this.EnableViewStateMac : bool with get, set
Public Property EnableViewStateMac As Boolean
屬性值
如果當頁面從用戶端回傳時,ASP.NET 該在頁面的檢視狀態執行訊息驗證碼 (MAC),則為 true
,否則為 false
。 預設為 true
。
- 屬性
範例
下列程式碼範例示範如何使用 EnableViewStateMac 屬性。
// Get the current EnableViewStateMac property value.
Console.WriteLine(
"Current EnableViewStateMac value: '{0}'",
pagesSection.EnableViewStateMac);
// Set the EnableViewStateMac property to true.
pagesSection.EnableViewStateMac = true;
' Get the current EnableViewStateMac property value.
Console.WriteLine( _
"Current EnableViewStateMac value: '{0}'", _
pagesSection.EnableViewStateMac)
' Set the EnableViewStateMac property to true.
pagesSection.EnableViewStateMac = True
備註
檢視狀態 MAC 是隱藏變數的加密版本,頁面的檢視狀態會在頁面傳送至瀏覽器時保存至該變數。 當這個屬性設定為 true
時,會檢查加密的檢視狀態,以確認它尚未在用戶端上遭到竄改。
重要
即使應用程式或頁面不使用檢視狀態,這個屬性不應該在生產網站中設定 false
為 。 除了檢視狀態之外,檢視狀態 MAC 有助於確保其他 ASP.NET 函式的安全性。