ViewStateEncryptionMode Enumeration
.NET Framework 3.5
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.
<%@ Page Language="C#" AutoEventWireup="true" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <script runat="server"> void Page_Load(Object sender, EventArgs e) { if (IsPostBack) { if (yesRetrieve.Checked) { Page.RegisterRequiresViewStateEncryption(); System.Data.SqlClient.SqlConnection conn = new System.Data.SqlClient.SqlConnection ("server=localhost;database=Northwind;Integrated Security=SSPI"); System.Data.SqlClient.SqlCommand command = conn.CreateCommand(); command.CommandText = "Select [CustomerID] From [Customers]"; conn.Open(); System.Data.SqlClient.SqlDataReader reader = command.ExecuteReader(); customerid.Text = reader["CustomerID"].ToString(); reader.Close(); conn.Close(); } else { customerid.Text = "Not retrieved"; } } } </script> <html xmlns="http://www.w3.org/1999/xhtml" > <head id="Head1" runat="server"> <title>Customer Information</title> </head> <body> <form id="form1" runat="server"> <div> Customer identifier: <asp:Label ID="customerid" runat="server" Text="Not available" /> <br /> Retrieve customer info: <asp:RadioButton ID="yesRetrieve" Text="yes" runat="server" GroupName="group1" /> <asp:RadioButton ID="noRetrieve" Text="no" runat="server" GroupName="group1" /> <br /> <asp:Button ID="Button1" runat="server" Text="Submit" /> </div> </form> </body> </html>
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
How to secure viewstate
How to secure a view state ??
[tfl - 26 10 09] Hi - and thanks for your post. You should post questions like this to the MSDN Forums at http://forums.microsoft.com/msdn or the MSDN Newsgroups at http://www.microsoft.com/communities/newsgroups/en-us/. You are much more likely get a quicker response using the forums than through the Community Content. For specific help about:
.NET Framework : http://groups.google.com/groups/dir?sel=usenet%3Dmicrosoft.public.dotnet.framework
PowerShell : http://groups.google.com/group/microsoft.public.windows.powershell/topics?pli=1
SQL Server : http://groups.google.com/groups/dir?sel=usenet%3Dmicrosoft.public.sqlserver%2C&
Visual Studio : http://groups.google.com/groups/dir?sel=usenet%3Dmicrosoft.public.vstudio%2C&
Windows : http://groups.google.com/groups/dir?sel=usenet%3Dmicrosoft.public.windows%2C&
All Public : http://groups.google.com/groups/dir?sel=usenet%3Dmicrosoft.public%2C&
- 10/26/2009
- Srinivas Girirayani
- 10/26/2009
- Thomas Lee