码迷,mamicode.com
首页 > Web开发 > 详细

ajax检测账户是否存在

时间:2015-01-09 17:14:49      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:

AccountControl.cs

        private IAccountService _accountService { get; set; }

#region
检测账户是否存在 public ActionResult CheckAccountIfExist(string Acc_account) { if (_accountService.GetByAccount(Acc_account) != null) { JsonResult["account_exist"] = true; } else { JsonResult["account_exist"] = false; } return Json(JsonResult); } #endregion

 

ajax检测账户是否存在

标签:

原文地址:http://www.cnblogs.com/wiming/p/4213598.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!