Esempio n. 1
0
        public JsonResult userLogin(string userName, string psw)
        {
            T_USER user = userManageService.login(userName, psw);
            Dictionary <string, object> res = new Dictionary <string, object>();

            if (user == null)
            {
                res.Add("success", 0);
                res.Add("msg", "账号或密码错误!");
            }
            else if (user.IS_USE == 0)
            {
                res.Add("success", 0);
                res.Add("msg", "账号未启用!");
            }
            else
            {
                Session["loginName"] = user.LOGIN_NAME;
                res.Add("success", 1);
                res.Add("msg", "登陆成功!");
            }
            return(Json(res));
        }