What is the JSON 's maximum length? Is it any limit for POST data size in Ajax?

JSON has a maximum length! I need to increase this value. In web.config add the following:


<appSettings>
  <add key="aspnet:MaxJsonDeserializerMembers" value="150000" />
</appSettings>
The unit of measure is the # of items (key/value pairs) that can be deserialized. If your JSON has 500 members (key/value pairs) and your limit is 400 then it would fail.

Comments

Popular posts from this blog

Easy Ui Jquery easyui-textbox change onChange event

Provision AWS EC2 Instance and RDS with Terraform, and Deploy Spring Boot App to EC2 Instance via GitHub Action Pipeline

npm install gets stuck at fetchMetadata