示例#1
0
        // Check MobileNo Existing
        public ActionResult CheckMobileNo(string mobileno)
        {
            if (mobileno != null)
            {
                var check = CommonFacade.IsUserMobileNoExists(mobileno);

                if (check == true)
                {
                    return(Json(new { result = "ERROR" }));
                }
                else
                {
                    return(Json(new { result = "OK" }));
                }
            }

            return(Json(new { result = "ERROR" }));
        }