// GET: Element public ActionResult Delete(int id) { Clipboard clipboard = new Clipboard(Server.MapPath("~/App_Data/clipboard.txt")); clipboard.Delete(id); Response.Redirect("/Home/Index"); Response.End(); return(View()); }