Example #1
0
 public ActionResult AjaxCheckRegisterPhoneNumber(string CellPhoneNumber)
 {
     if (LoginFacade.IsCustomerPhoneExist_Confirm(CellPhoneNumber))
     {
         return(Json("该手机号码已被绑定", JsonRequestBehavior.AllowGet));
     }
     return(Json("s", JsonRequestBehavior.AllowGet));
 }