public JsonResult Logoup() { object[] user = new object[] { Request.Form["email"], Request.Form["password"] }; string mess = ""; int status = 400; if (admin.Logoup(user) == true) { mess = "Đăng nhập thành công"; status = 200; Session["Admin"] = user[0]; } else { mess = "Đăng nhập thất bại"; status = 400; } return(Json(new { message = mess, status = status })); }