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
It seems that you call sometime the controller action per HTTP GET. To be able to return JSON results you should use code like
return Json(data, JsonRequestBehavior.AllowGet);