In ASP.NET MVC, Can I go beyond the max length of JSON?
var jsonResult = Json(data, JsonRequestBehavior.AllowGet);
jsonResult.MaxJsonLength = int.MaxValue;
return jsonResult;
My data here is greater than max value. If no, how can I send the data to the caller of the method?