asp.Net   发布时间:2022-04-04  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了asp.net-mvc – User.Identity.IsAuthenticated在设置cookie并进行验证后返回false大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
我对MVC4用户授权有问题。

System.Web.Security.Membership.ValidateUser返回true。
然后它到达FormsAuthentication.SetAuthCookie,我在浏览器中看到一个cookie。
然后User.Identity.IsAuthenticated由于某些原因仍然评估为false。
User.Identity.IsAuthenticated在重定向后仍然为false,并保持为false。

[AllowAnonymous]
[httpPost]
public ActionResult Login(LoginModel model,String returnUrl)
{
    if (ModelState.IsValid)
    {
        if (System.Web.Security.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,@R_607_9066@play form
    return View(model);
}

解决方法

在调用FormsAuthentication.SetAuthCookie()之后,下一个请求之前,User.Identity.IsAuthenticated不会被设置为true。

http://msdn.microsoft.com/en-us/library/twk5762b.aspx

大佬总结

以上是大佬教程为你收集整理的asp.net-mvc – User.Identity.IsAuthenticated在设置cookie并进行验证后返回false全部内容,希望文章能够帮你解决asp.net-mvc – User.Identity.IsAuthenticated在设置cookie并进行验证后返回false所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。