Article ID: 829743 - Last Review: June 18, 2007 - Revision: 4.3 Troubleshooting the "View state is invalid" error with ASP.NETOn This PageSUMMARYThis article describes some
techniques that can be used to debug and to resolve problems with view state in Microsoft ASP.NET applications. INTRODUCTIONView state is a feature in ASP.NET that allows pages to
automatically preserve state without relying on server state (for example,
session state). However, issues relating to view state can be difficult to
debug. In most cases, when problems with view state occur, you receive the
following error message in the Web browser, with little indication of what
might be causing the issue: "The viewstate is invalid for
this page and might be corrupted" MORE INFORMATIONVerify that you are not running into issues that have been fixedA number of view state issues were fixed with ASP.NET 1.0 hotfixes and service packs, and those fixes are also part of ASP.NET 1.1. Make sure that you have applied the latest fixes before tracking issues that have already been resolved. You can obtain the latest Microsoft .NET Framework updates from the following Microsoft Developer Network (MSDN) Web site:http://msdn2.microsoft.com/en-us/netframework/aa569276.aspx
(http://msdn2.microsoft.com/en-us/netframework/aa569276.aspx)
Set the validationKey attribute if you are running in a Web farmIn a Web farm, each client request can go to a different machine on every postback. Because of this behavior, you cannot leave the validationKey attribute set to AutoGenerate in the Machine.config file. Instead, you must set the value of the validationKey attribute to a fixed string that is shared by all the machines on the Web farm.For more information about this issue, click the following article number to view the article in the Microsoft Knowledge Base: 323744
(http://support.microsoft.com/kb/323744/
)
FIX: "The view state is invalid for this page and might be corrupted" error message in ASP.NET
Do not store dynamically generated types in view state in a Web farmWhen ASP.NET compiles files dynamically, the files are built into assemblies with essentially random names (for example, a file name might be jp395dun.dll). If you are running a Web farm, the same files will be compiled into assemblies with different random names. Normally, this is not a problem because no one makes assumptions on those assembly names. But if you ever put a dynamically compiled type into view state by using binary serialization, the name of the assembly will be included as part of the view state data. When that view state is later sent to a different server in the Web farm, the view state cannot be deserialized because it uses different assembly names.The best fix to this problem is to avoid using binary serialization. Binary serialization uses many resources even when you do not run into this problem. Instead, limit what you put in view state to a combination of Arrays, Pairs, Triplets, and simple types (for example, strings, int, and other types). System.Web.UI.Pair and System.Web.UI.Triplet are simple wrapper types that the view state engine can efficiently process. An alternative fix to avoid this problem is to move the types that you are storing in view state into a precompiled assembly, either in your Bin folder or in the Global Assembly Cache. This fix does not address performance, but it guarantees that the assembly has the same name on all computers. Note If you store complex data types in view state and experience this issue, the call stack information will contain stacks that are similar to the following: [FileNotFoundException: Could not load file or assembly 'App_Web_fx--sar9, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. The system cannot find the file specified.] System.RuntimeTypeHandle._GetTypeByName(String name, Boolean throwOnError, Boolean ignoreCase, Boolean reflectionOnly, StackCrawlMark& stackMark, Boolean loadTypeFromPartialName) +0 System.RuntimeTypeHandle.GetTypeByName(String name, Boolean throwOnError, Boolean ignoreCase, Boolean reflectionOnly, StackCrawlMark& stackMark) +72 System.RuntimeType.PrivateGetType(String typeName, Boolean throwOnError, Boolean ignoreCase, Boolean reflectionOnly, StackCrawlMark& stackMark) +58 System.Type.GetType(String typeName, Boolean throwOnError) +57 System.Web.UI.ObjectStateFormatter.DeserializeType(SerializerBinaryReader reader) +192 System.Web.UI.ObjectStateFormatter.DeserializeValue(SerializerBinaryReader reader) +943 System.Web.UI.ObjectStateFormatter.DeserializeValue(SerializerBinaryReader reader) +384 System.Web.UI.ObjectStateFormatter.DeserializeValue(SerializerBinaryReader reader) +198 System.Web.UI.ObjectStateFormatter.DeserializeValue(SerializerBinaryReader reader) +210 System.Web.UI.ObjectStateFormatter.DeserializeValue(SerializerBinaryReader reader) +198 System.Web.UI.ObjectStateFormatter.Deserialize(Stream inputStream) +142 Determine whether the problem is related to the view state MAC featureThe purpose of the view state machine authentication code (MAC) feature is to make it impossible for clients to send a request that contains a malicious view state. By default, this feature is enabled in the following flag in the Machine.config file.Important Only turn off the view state MAC feature to help diagnose the problem. You should not keep the view state MAC turned off to work around the issue. If so, you could introduce security holes. For more information, visit the following MSDN Web site: http://msdn2.microsoft.com/en-us/library/aa302388.aspx
(http://msdn2.microsoft.com/en-us/library/aa302388.aspx)
If you turn the view state MAC feature off, and then you use view
state for controls that do not HTML encode (for example, a Label control), attackers can tamper with the view state data and can
put arbitrary data in view state. This arbitrary data is decoded and then used
by controls when they render the posted page. As a result, attackers can inject
script into the application unless you work to prevent the attack. For example,
an attacker could decode the data, inject script into the data where a Label control is, and then link to it from a Web site. Anyone who
clicks on the link would be the victim of a script injection attack that could
potentially steal their authentication cookies or session id. The script could
also let an attacker alter state data for controls that use view state and
application specific attacks could occur as a result.In general, Microsoft recommends that you not turn off the view state MAC feature unless you are completely confident that you have either disabled view state for all controls that do not HTML encode their output (for example, DataGrid controls, DataList controls, Label controls, and other controls) or that you are always explicitly setting their values on each request to something known to be safe. For more information, click the following article numbers to view the articles in the Microsoft Knowledge Base: 316920
(http://support.microsoft.com/kb/316920/
)
You receive a "View state is invalid" error message when you use the
Server.Transfer method
324488
(http://support.microsoft.com/kb/324488/
)
Forms
authentication and view state fail intermittently under heavy load
Determine exactly what exception occurs when you receive the error messageUnfortunately, the invalid view state error message that is mentioned in the "INTRODUCTION" section of this article is not very informative. The error message is generally caused by some exception being thrown when the view state is being processed. The problem is that the exception is being consumed, and its details are lost in the error message.By using a debugger, you can determine the original exception. To do this, you must attach a debugger to the ASP.NET process (Aspnet_wp.exe or W3wp.exe), and then set it to catch all exceptions. The debugger will probably stop at a few exceptions that are not relevant, but eventually it will hit the view state exception and provide useful information for troubleshooting. The following steps are an example that uses the Runtime Debugger (Cordbg.exe).
831150
(http://support.microsoft.com/kb/831150/
)
The "Viewstate is invalid for this page" error message does not provide sufficient information to troubleshoot the issue
Try storing the view state in the sessionBy default, the view state is round-tripped by means of an <input type=hidden> field that is sent to the browser. The browser then sends the field back to the server on the next request. In some cases, this view state can get quite large and be a potential source of problems. Some browsers cannot handle such a large hidden field (and the resulting large request), and the browsers may truncate the view state. Truncating the view state causes a "view state corrupted" error message. This behavior is most likely to occur in simpler browsers. For example, this behavior may occur in a browser on a PDA.To determine whether you may be running into such an issue, try storing the view state in the session. The following example demonstrates how to do this. The following line of code is only needed in ASP.NET 1.0, to work around a bug. In ASP.NET 1.1, it is not necessary. Determine whether the problem is caused by worker process recyclingConsider the following scenario.
The workaround for this scenario is to use an explicit validationKey attribute in the configuration file.
For more information
about how to create a key, click the following article numbers to view the articles in the Microsoft Knowledge Base:
312906
(http://support.microsoft.com/kb/312906/
)
How to create keys by using Visual C# .NET for use in Forms authentication
313091
(http://support.microsoft.com/kb/313091/
)
How to create keys by using Visual Basic .NET for use in Forms authentication
REFERENCES
For more information, click the following article numbers to view the articles in the Microsoft Knowledge Base:
316920
(http://support.microsoft.com/kb/316920/
)
"View state is invalid" error message when you use Server.Transfer
324488
(http://support.microsoft.com/kb/324488/
)
Forms
authentication and view state fail intermittently under heavy load
831150
(http://support.microsoft.com/kb/831150/
)
The "Viewstate is invalid for this page" error message does not provide sufficient information to troubleshoot the issue
For more information, visit the following MSDN Web
sites:http://msdn2.microsoft.com/en-us/library/aa302388.aspx
(http://msdn2.microsoft.com/en-us/library/aa302388.aspx)
http://msdn2.microsoft.com/en-us/netframework/aa731542.aspx (http://msdn2.microsoft.com/en-us/netframework/aa731542.aspx)
| Article Translations
|

Back to the top
