2

我正在尝试将表单身份验证添加到 mvc 站点,当我运行应用程序时,我被重定向到登录页面(这是正确的)。但是,每次我尝试登录时,页面都会被刷新,并且控制器永远不会收到发布请求。我认为我的表单身份验证已关闭并将所有请求重定向回登录页面?任何帮助将不胜感激!

以下是我的网络配置信息:

<authentication mode="Forms">
      <forms loginUrl="~/Account" timeout="30" slidingExpiration="false" requireSSL="false" />      
    </authentication>
<authorization>
      <deny users ="?" />
      <allow users = "*" />
    </authorization>

下面是我的登录页面:

@using (Html.BeginForm("Login", "Account", FormMethod.Post))
{
    @Html.LabelFor(x => x.Username)<br />
    @Html.TextBoxFor(x => x.Username)

    <br />
    <br />

    @Html.LabelFor(x => x.Password)<br />
    @Html.TextBoxFor(x => x.Password)


    <br />
    <br />
    <br />

    <input type="submit" value="Login" />
}

下面是我的控制器:

[HttpGet]
        public ActionResult Index()
        {
            return View("~/Views/Account/Login.cshtml", new LoginViewModel());
        }

        [HttpPost]
        public ActionResult Login(LoginViewModel viewModel)
        {
            Membership.ValidateUser(viewModel.Username, viewModel.Password);
            FormsAuthentication.SetAuthCookie(viewModel.Username, viewModel.RememberMe);

            return View("~/Views/Account/Login.cshtml", viewModel);
        }
4

3 回答 3

2

我相信POST正在发生,但我朋友遇到的问题是,您正在重定向到POST.

return View("~/Views/Account/Login.cshtml", viewModel);

将用户引导至主页。

于 2012-09-27T12:55:19.713 回答
2

其他人建议从您的 Login HttpPost 操作重定向到主页,但由 Visual Studio 创建的标准 MVC“Intranet 应用程序”模板尝试重定向到由 FormsAuthentication 基础结构作为查询字符串传递给 Login 操作的 returnUrl:

if (Url.IsLocalUrl(returnUrl) && returnUrl.Length > 1 && returnUrl.StartsWith("/")
                    && !returnUrl.StartsWith("//") && !returnUrl.StartsWith("/\\"))
{
    return Redirect(returnUrl);
}
else
{
    return RedirectToAction("Index", "Home");
}

我会复制这个,除非你有充分的理由不这样做。

于 2012-09-27T13:03:52.377 回答
1

这是正确的。由于该代码:

public ActionResult Index()
{
   return View("~/Views/Account/Login.cshtml", new LoginViewModel());
}

将其更改为return View(); 并在相应文件夹中创建名为 Index 的视图。

于 2012-09-27T12:54:27.407 回答