I am working on a web form that works great while it returns to itself. In Report.aspx, I have:
<form runat="server" method="post">
but when I try to send it to another page:
<form runat="server" method="post" action="DisplayReport.aspx">
I get the error "Validation of viewstate MAX failed". I tried to set the machine key and disable viewstate in web.config, but nothing helps. Am I stuck a message on the same page? If so, what is the point of the action attribute?
source share