表单身份验证重定向到登录页面

本文关键字:登录 身份验证 重定向 表单 | 更新日期: 2023-09-27 18:28:26

我正试图在ASP.NETMVC5应用程序中实现Simple FormsAuthentication,如下所示:

控制器

public ViewResult login()
{
    return View();
}
[HttpPost]
public ViewResult login(Login login)
{            
    if (ModelState.IsValid)
    {
        if (FormsAuthentication.Authenticate(login.username, login.password))
        {
            FormsAuthentication.RedirectFromLoginPage(login.username, false);                 
        }
        else
        {
            Response.Write("Invalid username or password. Try again");
            return View();
        }
     }
     return View("Index");            
}

Web.Config

<appSettings>
    <add key="owin:AutomaticAppStartup" value="false"/>
</appSettings>
<system.web>    
    <authentication mode="Forms">
          <forms
              name="PC"
              loginUrl="~/Home/login"
              timeout="2">
          <credentials>
              <user name="admin" password="admin1"/>
          </credentials>
  </forms>
</authentication>
<authorization>
  <deny users="?"/>
</authorization>
</system.web>

现在,当我提供Web.Config文件中提到的正确凭据时,来自PostHttp login ViewResultElse语句部分的错误消息将执行并写入消息Invalid username or password. Try again并再次重定向到登录页面。浏览器中显示的URL为:

http://payroll.net:81/Home/login?ReturnUrl=%2f

知道为什么FormsAuthentication在收到正确的凭据后没有重定向到"索引"视图吗?

表单身份验证重定向到登录页面

您正在为其提供未哈希的密码,默认哈希算法是Sha1尝试哈希您的密码并放入哈希字符串。此外,如果你不想使用加密,你可以用声明

 <credentials passwordFormat = "Clear">   
     <user name="UserName" 
     password="SimplePass"/>
  </credentials>