예제 #1
0
 public ActionResult GetDanhSachChuongTrinh()
 {
     try
     {
         var model = db.SP_APAX_GETDANHSACHCHUONGTRINH("").ToList();
         var json  = Json(model, JsonRequestBehavior.AllowGet);
         json.MaxJsonLength = int.MaxValue;
         return(json);
     }
     catch
     {
         return(Json(null, JsonRequestBehavior.AllowGet));
     }
 }