public string CheckPwd(string value) { if (UserInfoService.CheckPwd(value)) { //说明密码正确,告诉前端合法 return("ok"); } else { return("no"); } }