I got this error when I tried to save a Page with lots of form fields to SQL Server Database.
The default max number of form fields that can be post is 1000.
In order to solve this error add this Line to your Web.Config File:
The default max number of form fields that can be post is 1000.
In order to solve this error add this Line to your Web.Config File:
<appSettings>
<add key="aspnet:MaxHttpCollectionKeys" value="10000" />
</appSettings>
Source: https://www.nilebits.com/blog/2011/03/operation-is-not-valid-due-to-the-current-state-of-the-object-exception-in-asp-net/