Please don't mark this post as duplicated.. Please help me to fix my issue since I am very new to asp.net I have some difficulties with understanding.
I am working on VS 2010 and try to familiarize with asp.net web site. I have two web pages called Default.aspx and Result.aspx.
Default.aspx
<form id="Form1" runat="server" action="Result.aspx">
//Some Controllers (Dynamically added textboxes and submit button)
</form>
Once I fill the form and when it is submit following error comes.
Validation of viewstate MAC failed. If this application is hosted by a Web Farm or cluster, ensure that configuration specifies the same validationKey and validation algorithm. AutoGenerate cannot be used in a cluster.
I tried to add EnableViewStateMac="false"
but have no luck.
Please advice me to fix this and appreciate if you could explain me why this comes.