Thursday, 17 March 2016

Json Return Error:The length of the string exceeds the value set on the maxJsonLength property

Json Return Error:The length of the string exceeds the value set on the maxJsonLength property

 Error:

 var jsonResult =  Json(lstModel, JsonRequestBehavior.AllowGet);

o/p:

Internal server Error (or) The length of the string exceeds the value set on the maxJsonLength property

 Solved:

 var jsonResult =  Json(lstModel, JsonRequestBehavior.AllowGet);
                    jsonResult.MaxJsonLength = int.MaxValue;
                    return jsonResult;

No comments: