MVC 4 SimpleMembership - Dlaczego WebSecurity.CurrentUserId -1 po zalogowaniu

Próbuję ustawić plik cookie przy logowaniu i problemy z uzyskaniem bieżącego identyfikatora użytkownika po zalogowaniu. W poniższym przykładzie intUserId to -1, a WebSecurity.IsAuthenticated jest fałszywy. Czy to nie jest właściwe miejsce na umieszczenie tego kodu? Następnie przekierowuje na stronę główną ... więc nie wiem, dlaczego nie jest to właściwe miejsce.

// POST: /Account/Login

        [HttpPost]
        [AllowAnonymous]
        [ValidateAntiForgeryToken]
        public ActionResult Login(LoginModel model, string returnUrl)
        {
            if (ModelState.IsValid && WebSecurity.Login(model.UserName, model.Password, persistCookie: model.RememberMe))
            {
                //TODO: set current company and facility based on those this user has access to
                int intUserId = WebSecurity.GetUserId(User.Identity.Name);
                int intUserId2 = WebSecurity.GetUserId(model.UserName);
                UserSessionPreferences.CurrentCompanyId = 1;
                UserSessionPreferences.CurrentFacilityId = 1;

                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);
        }

questionAnswers(1)

yourAnswerToTheQuestion