示例#1
0
        public ActionResult DeleteConfirmed(int id)
        {
            PopUps popUps = popUpManager.Find(x => x.Id == id);

            popUpManager.Delete(popUps);
            System.IO.File.Delete(Server.MapPath($"~/Images/PopUpImage/{popUps.PopUpImage}"));
            return(RedirectToAction("Index"));
        }