Beispiel #1
0
        public ActionResult DeleteTag(Tag objTag)
        {
            string Result = string.Empty;

            Result = _admindata.DeleteTag(objTag);

            if (Result == "1")
            {
                Result = "Standard Global Tag deleted successfully";
            }

            return(Json(Result, JsonRequestBehavior.AllowGet));
        }