Search code examples
asp.net-mvcasp.net-mvc-4asp.net-mvc-3razorasp.net-mvc-5

To allow GET requests, set JsonRequestBehavior to AllowGet


I have bound bulk records in a Kendo UI grid. The response is returned from Json.

I am getting Error while using below format:

Problem Code : Method 1:

public JsonResult KendoserverSideDemo(int pageSize, int skip=10)
{
  using (var s = new KendoEntities())
  {
    var total = s.Students.Count();

    if (total != null)
    {
      var data = s.Students.OrderBy(x=>x.StudentID).Skip(skip)
                           .Take(pageSize).ToList();

      return Json(new { total = total, 
                        data = data,
                        JsonRequestBehavior.AllowGet });
    }
    else
    {
      return null;
    }
  }
}

Method 2 : Working fine using this:

public JsonResult KendoserverSideDemo(int pageSize, int skip=10)
{
  using (var s = new KendoEntities())
  {
    var total = s.Students.Count();

    if (total != null)
    {
      var data = s.Students.OrderBy(x=>x.StudentID).Skip(skip)
                           .Take(pageSize).ToList();

      return Json(data, JsonRequestBehavior.AllowGet);
    }
    else
    {
      return null;
    }
  }
}

What is the problem in first Method 1?


Solution

  • You have simple typo/syntax error

    return Json(new { total = total, data = data,JsonRequestBehavior.AllowGet });
    

    The JsonRequestBehavior.AllowGet is the second parameter of Json - it shouldnt be part of the object

    return Json(new { total = total, data = data }, JsonRequestBehavior.AllowGet);