public JsonResult GetCourseByStudentId(int studentId) { List <SelectListItem> courseList = AStudentResultManager.GetAllCourseByStudentId(studentId); return(Json(courseList, JsonRequestBehavior.AllowGet)); }