PagesSection.ViewStateEncryptionMode Property

Definition

Gets or sets the encryption mode that ASP.NET uses when maintaining ViewState values.

[System.Configuration.ConfigurationProperty("viewStateEncryptionMode", DefaultValue=System.Web.UI.ViewStateEncryptionMode.Auto)]
public System.Web.UI.ViewStateEncryptionMode ViewStateEncryptionMode { get; set; }

Property Value

A ViewStateEncryptionMode enumeration value indicating when the ViewState values are encrypted.

Attributes

Remarks

The possible ViewStateEncryptionMode enumeration values are Always, Auto, and Never. The default value is Auto. If ViewStateEncryptionMode property is set to Auto, ViewState will be encrypted when a control requests it.

Applies to

Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also