AccountController 中的登录操作
// Logon Logic.
FormsAuthentication.SetAuthCookie(model.UserInfo, model.RememberMe);
if (Url.IsLocalUrl(returnUrl) && returnUrl.Length > 1 && returnUrl.StartsWith("/")
&& !returnUrl.StartsWith("//") && !returnUrl.StartsWith("/\\"))
{
return Redirect(returnUrl);
}
else
{
return RedirectToAction("Index", "Home");
}
网络配置
<authentication mode="Forms">
<forms name="TestRadarManager" loginUrl="~/Account/LogOn" timeout="2880" slidingExpiration="false" />
</authentication>
主页索引.cshtml
@if (Request.IsAuthenticated)
{
<span>Welcome,</span><b>@Context.User.Identity.Name</b>
}
它在 FF 浏览器中运行良好,但 Request.IsAuthenticated 在 IE 中总是错误的,在此先感谢您的帮助。