public ActionResult EditTableRowDelete(Int32 Clientid)
 {
     using (clientCtl db = new clientCtl()){
         db.delete(Clientid);
         return(RedirectToAction("EditTable"));
     }
 }
 public ActionResult Delete(Int32 Clientid)
 {
     using (clientCtl db = new clientCtl()){
         db.delete(Clientid);
         return(RedirectToAction("Index"));
     }
 }
 public ActionResult EditTableRowsDelete(string records)
 {
     using (clientCtl db = new clientCtl()){
         foreach (string id in records.Trim(',').Split(','))
         {
             if (!string.IsNullOrEmpty(id.Trim()))
             {
                 db.delete(Convert.ToInt32(id));
             }
         }
         return(View());
     }
 }