I keep getting the following error message when I run my vb.net web app:
The state information is invalid for this page and might be corrupted.
After a good search, I came across this Microsoft page, which describes the problem exactly. The likely cause seems to be "scenario 2":
Scenario 2: You modify your pages, which causes the shadow, copied files in the Temporary ASP.NET files folder to be regenerated. A user has a copy of the page that was requested before this change, and the user posts the page after the files in that folder were regenerated.
But strangely- despite saying there is a hotfix, does not actually give the link to it.
Can anyone suggest a fix?
UPDATED: I appear to have prevented this error from happening by using EnableEventValidation="False" in the Page node of the markup as recommended here. More of a work-around than a fix.