// GET: Admin/Blog_Single_Masking/Edit/5 public ActionResult Edit(int?id) { if (id == null) { return(new HttpStatusCodeResult(HttpStatusCode.BadRequest)); } Blog_Single_Masking blog_Single_Masking = db.Blog_Single_Masking.Find(id); if (blog_Single_Masking == null) { return(HttpNotFound()); } return(View(blog_Single_Masking)); }
public ActionResult Edit([Bind(Include = "Id,Title,Text_First,Text_Second,Image")] Blog_Single_Masking blog_Single_Masking, HttpPostedFileBase Image) { if (ModelState.IsValid) { Blog_Single_Masking activeMasking = db.Blog_Single_Masking.Find(blog_Single_Masking.Id); if (activeMasking != null) { if (Image != null) { string fileName = null; if (Image.ContentLength > 0 && Image.ContentLength <= 4 * 1024 * 1024) { if (Image.ContentType.ToLower() == "image/jpeg" || Image.ContentType.ToLower() == "image/jpg" || Image.ContentType.ToLower() == "image/png" || Image.ContentType.ToLower() == "image/gif" ) { if (blog_Single_Masking.Title != null && blog_Single_Masking.Text_First != null && blog_Single_Masking.Text_Second != null) { var path = Path.Combine(Server.MapPath("~/Uploads/"), activeMasking.Image); if (System.IO.File.Exists(path)) { System.IO.File.Delete(path); } DateTime dt = DateTime.Now; var beforeStr = dt.Year + "_" + dt.Month + "_" + dt.Day + "_" + dt.Hour + "_" + dt.Minute + "_" + dt.Second + "_" + dt.Millisecond; fileName = beforeStr + Path.GetFileName(Image.FileName); var newFilePath = Path.Combine(Server.MapPath("~/Uploads/"), fileName); Image.SaveAs(newFilePath); activeMasking.Image = fileName; activeMasking.Title = blog_Single_Masking.Title; activeMasking.Text_First = blog_Single_Masking.Text_First; activeMasking.Text_Second = blog_Single_Masking.Text_Second; db.SaveChanges(); return(RedirectToAction("Index")); } else { ViewBag.EditError = "Please fill all the fields."; } } else { ViewBag.EditError = "Image type is not valid."; } } else { ViewBag.EditError = "Image type should not be more than 4 MB."; } } else { if (blog_Single_Masking.Title != null && blog_Single_Masking.Text_First != null && blog_Single_Masking.Text_Second != null) { activeMasking.Title = blog_Single_Masking.Title; activeMasking.Text_First = blog_Single_Masking.Text_First; activeMasking.Text_Second = blog_Single_Masking.Text_Second; db.SaveChanges(); return(RedirectToAction("Index")); } else { ViewBag.EditError = "Please fill all the fields."; } } } else { ViewBag.EditError = "Id is not correct."; return(View(activeMasking)); } } return(View(blog_Single_Masking)); }