This documentation is archived and is not being maintained.
ViewStateEncryptionMode Enumeration
Visual Studio 2010
Specifies whether view-state information is encrypted.
Assembly: System.Web (in System.Web.dll)
| Member name | Description | |
|---|---|---|
| Auto | The view-state information is encrypted if a control requests encryption by calling the RegisterRequiresViewStateEncryption method. This is the default. | |
| Always | The view-state information is always encrypted. | |
| Never | The view-state information is never encrypted, even if a control requests it. |
The following code example demonstrates setting the view-state encryption mode for a Page object and requesting encryption of the view-state information through the RegisterRequiresViewStateEncryption method. In this example, the view-state information will be encrypted when customer information is retrieved from a database.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: