User-333307449 posted
Hi Shivnag,
This can be fixed. JSON supports a particular size of record by default. but if we are trying to return more records, you have to specify the MaxJsonLength property of Json object.
To do so. Go to your Controller first then go to the code where you are returning JSON record, and replace your old code by following code:
var jsonResult = Json(new { aaData = finalList }, JsonRequestBehavior.AllowGet);
jsonResult.MaxJsonLength = int.MaxValue;
return jsonResult;