Tag Archives: The JSON request was too large to be deserialized

The JSON request was too large to be deserialized

When batch updating the data just now, I received an error message: the JSON request was too large to be serialized

To find information, there is a limit on the number of JSON objects. You need to configure parameters in web.config

<appSettings>    
    <add key="aspnet:MaxJsonDeserializerMembers" value="500000"/>
  </appSettings>

Source Code