Answer for your question was in the stack trace. “JsonRequestBehavior to AllowGet”
So use it in your Controller as:
return Json(data, JsonRequestBehavior.AllowGet)
Answer for your question was in the stack trace. “JsonRequestBehavior to AllowGet”
So use it in your Controller as:
return Json(data, JsonRequestBehavior.AllowGet)