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
Post a Comment