public ActionResult EditPPT(string id, string fileOld, HttpPostedFileBase file) { bool isOk = false; if (file != null) { DeleteFileOld(fileOld); isOk = lessons.UpdateFileID("PPTFile", UploadsFile(file), id); } if (isOk) { TempData["Error"] = "Cập Nhật Thành Công-OK"; } return(RedirectToAction("Index", "Home")); }