This error comes up in our MVC app randomly. Sometimes doing the same exact thing it won\'t sometimes, it will. Does anyone know if this has to do with anything that could be a
Answer for your question was in the stack trace. "JsonRequestBehavior to AllowGet"
So use it in your Controller as:
return Json(data, JsonRequestBehavior.AllowGet)