Esempio n. 1
0
        public ActionResult RemoveTag(int id)
        {
            // get the list of classifications from Session
            List <TagModel> tags = getTags();

            tags.RemoveAt(tags.FindIndex(c => c.Id == id));

            TagProcessor.DeleteTag(id);

            return(RedirectToAction("Tags", "Language"));
        }