In ASP.NET MVC application,ajax call is used to fetch data in JSON format. This ajax call is working fine for small JSON data size.
Getting below error on AJAX call, when ajax call returning large size of JSON data.
Failed to load resource: the server responded with a status of 500 (Internal Server Error) send @ jquery.min.js:4
Also tried maxJsonLength property to a higher value in web.config (jsonSerialization maxJsonLength="2147483644") to resolve the issue.But it is not working.
Is there any other solution available to resolve this issue?