Esempio n. 1
0
        public JsonResult DeleteContent(string listContentId)
        {
            string[] listofIds = listContentId.Split(',');

            ContentManagement objcontent = new ContentManagement(SessionCustom, HttpContext);

            objcontent.DeleteContent(listofIds);
            return(this.Json(new { result = true }, JsonRequestBehavior.AllowGet));
        }