Click here to Skip to main content
15,886,067 members
Articles / Web Development / ASP.NET
Tip/Trick

ViewState and Server.Transfer Best practices

Rate me:
Please Sign up or sign in to vote.
4.90/5 (7 votes)
20 Apr 2010CPOL 25.6K   6  
ViewState and Server.Transfer Best practicesScenario : Server.Transfer("destiny.aspx",true); Above statement will cause ViewState is invalid exceptionReason :By default EnableViewStateMac is set to true, and hence on every page life cycle , it tries to validate the value of the...
ViewState and Server.Transfer Best practices

Scenario :

Server.Transfer("destiny.aspx",true);
Above statement will cause ViewState is invalid exception

Reason :

By default EnableViewStateMac is set to true, and hence on every page life cycle , it tries to validate the value of the ViewState(for security reason) ,which is a part of forms collection(__ViewState - hidden field) and by ViewState design at any given point you can post to only one form...Hence in the prior case , it tries to compare the ViewState of the source with the destiny and hence the above mismatch happens :)

Best practices to Transfer the control to the other page without affecting the view state

Option 1

use

Server.Transfer("destiny.aspx",false);


- The Second parameter in the above statement is set to false , Hence it is not preserving the prvious page folrms collections..

Option 2

Passing Server control value between pages

http://msdn2.microsoft.com/en-us/library/6c3yckfw(vs.71).aspx



I hope this helps!.

Regards,
-Vinayak

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect MindTree Ltd
India India
Motivated achiever who guides organizations in applying technology to business settings, provides added value, and creates project deliverables in a timely manner. An experienced Technical Consultant, have successfully led large project teams of more than 20 people from requirements gathering to implementation and support using C#, .NET ,ADO.NET, ADO.NET Entity Framework,ASP.NET,ASP.NET MVC, WCF and SQL Server.

Comments and Discussions

 
-- There are no messages in this forum --