Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

__VIEWSTATE no valid

Status
Not open for further replies.

maneland

Programmer
Mar 24, 2006
24
ES
I'm trying to send an html form to an aspx page but everything is Ok only for hours. After hours I get an error.

- Authentication of viewstate failed.

1) If this is a cluster, edit <machineKey> configuration so all servers use the same validationKey and validation algorithm. AutoGenerate cannot be used in a cluster.
2) Viewstate can only be posted back to the same page.
3) The viewstate for this page might be corrupted.

How can I fix it? I would like to fill the a valid __VIEWSTATE in my form

Thanks
 
>>I'm trying to send an html form to an aspx page but everything is Ok only for hours

that is strange, only an ASPX can submit to another ASPX. in version 1.x the aspx can submit only to itself...

Known is handfull, Unknown is worldfull
 
Is There any way to submit a <form runat="server"... to other aspx file that receive the form parameters?
 
nope, not in 1.1, heard its possible in 2.0.

the only way to pass data between 2 pages:
--> Querystring
--> Sessions

Known is handfull, Unknown is worldfull
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top