Esempio n. 1
0
        public JsonResult CheckURL(string urlString)
        {
            MemberAction objMember = new MemberAction();
            bool isURLAvailable = objMember.FindByURL(urlString);

            if (isURLAvailable == true)
                return Json(false);
            return Json(true);
        }