public ActionResult DeleteConfirmed(int id) { if (Session["admin"] == null) { return(RedirectToAction("Index", "adminLogin")); } ExpertMaster expertMaster = db.ExpertMasters.Find(id); db.ExpertMasters.Remove(expertMaster); db.SaveChanges(); return(RedirectToAction("Index")); }
public ActionResult Edit([Bind(Include = "ExpertId,ExpertName,ExpertPassword,ExpertEmailId,ExpertMobile,Occupation,Price")] ExpertMaster expertMaster) { if (Session["admin"] == null) { return(RedirectToAction("Index", "adminLogin")); } if (ModelState.IsValid) { db.Entry(expertMaster).State = EntityState.Modified; db.SaveChanges(); return(RedirectToAction("Index")); } return(View(expertMaster)); }
// GET: admin/ExpertMasters/Edit/5 public ActionResult Edit(int?id) { if (Session["admin"] == null) { return(RedirectToAction("Index", "adminLogin")); } if (id == null) { return(new HttpStatusCodeResult(HttpStatusCode.BadRequest)); } ExpertMaster expertMaster = db.ExpertMasters.Find(id); if (expertMaster == null) { return(HttpNotFound()); } return(View(expertMaster)); }