public ActionResult UpdateFeatured([FromQuery] string Ids, Boolean Featured) { string ControllerName = this.ControllerContext.RouteData.Values["controller"].ToString(); Videos item = new Videos() { Id = Int32.Parse(MyModels.Decode(Ids, API.Models.Settings.SecretId + ControllerName).ToString()), Featured = Featured }; try { if (item.Id > 0) { item.CreatedBy = int.Parse(HttpContext.Request.Headers["Id"]); item.ModifiedBy = int.Parse(HttpContext.Request.Headers["Id"]); dynamic UpdateFeatured = VideosService.UpdateFeatured(item); TempData["MessageSuccess"] = "Cập nhật Nổi Bật thành công"; return(Json(new MsgSuccess())); } else { TempData["MessageError"] = "Cập nhật Nổi Bật Không thành công"; return(Json(new MsgError())); } } catch { TempData["MessageError"] = "Cập nhật Nổi Bật không thành công"; return(Json(new MsgError())); } }