In web.config file we have set the
<jsonSerialization maxJsonLength="2147483647">
</jsonSerialization>`
However, we are receiving more data than the above-mentioned limit. Is there a way we can increase it beyond this limit? I'm aware of ways this be avoided (like pagination).
Following is the code that we are using for Serialize the data:
jsonString = new JavaScriptSerializer().Serialize(object1);
are there places where maxJsonLength could be overridden from?