public ActionResult Edit(int id, VolunteerModel vmodel)
 {
     try
     {
         VolunteerDBhandle sdb = new VolunteerDBhandle();
         sdb.UpdateDetails(vmodel);
         return(RedirectToAction("Index"));
     }
     catch
     {
         return(View());
     }
 }