I am using the autocomplete feature of jQuery. When I try to retrieve the list of more then 17000 records (each won\'t have more than 10 char length), it\'s exceeding the le
if you are still getting error after web.config setting like following:
I solved it by following:
public ActionResult/JsonResult getData() { var jsonResult = Json(superlargedata, JsonRequestBehavior.AllowGet); jsonResult.MaxJsonLength = int.MaxValue; return jsonResult; }
I hope this should help.