コード例 #1
0
        public JsonResult JsonLogin(LoginModel model, string returnUrl)
        {
            if (ModelState.IsValid)
             {
            if (Membership.ValidateUser(model.UserName, model.Password))
            {
               FormsAuthentication.SetAuthCookie(model.UserName, model.RememberMe);
               return Json(new { success = true, redirect = returnUrl });
            }
            else
            {
               ModelState.AddModelError("", "The user name or password provided is incorrect.");
            }
             }

             // If we got this far, something failed
             return Json(new { errors = GetErrorsFromModelState() });
        }
コード例 #2
0
ファイル: AccountController.cs プロジェクト: JohnCulv/Games
        public ActionResult Login(LoginModel model, string returnUrl)
        {
            if (ModelState.IsValid && WebSecurity.Login(model.UserName, model.Password, persistCookie: model.RememberMe))
            {
                return RedirectToLocal(returnUrl);
            }

            // If we got this far, something failed, redisplay form
            ModelState.AddModelError("", "The user name or password provided is incorrect.");
            return View(model);
        }
コード例 #3
0
        public ActionResult Login(LoginModel model, string returnUrl)
        {
            if (ModelState.IsValid)
             {
            if (Membership.ValidateUser(model.UserName, model.Password))
            {
               FormsAuthentication.SetAuthCookie(model.UserName, model.RememberMe);
               if (Url.IsLocalUrl(returnUrl))
               {
                  return Redirect(returnUrl);
               }
               else
               {
                  return RedirectToAction("Index", "Home");
               }
            }
            else
            {
               ModelState.AddModelError("", "The user name or password provided is incorrect.");
            }
             }

             // If we got this far, something failed, redisplay form
             return View(model);
        }