public ActionResult ThemMoi(ChuDe cd, HttpPostedFileBase fileUpload)
 {
     //Thêm vào cơ sở dữ liệu
     if (ModelState.IsValid)
     {
         db.ChuDes.Add(cd);
         db.SaveChanges();
     }
     return View();
 }
 public ActionResult ChinhSua(ChuDe cd, FormCollection f)
 {
     //Thêm vào cơ sở dữ liệu
     if (ModelState.IsValid)
     {
         //Thực hiện cập nhận trong model
         db.Entry(cd).State = System.Data.Entity.EntityState.Modified;
         db.SaveChanges();
     }
     return RedirectToAction("Index");
 }