使用Razor的FormsAuthentication无法正常工作

时间:2013-09-30 16:36:46

标签: c# asp.net-mvc razor forms-authentication

我正在尝试使用FormsAuthentication来使用我的Razor应用程序(MVC 3)。我有一个LoginController调用我的LoginPage(在Views / Shared中);我的web.config将LoginUrl设置为“/ Login /”。当应用程序尝试调出主页面时,[Authorize]行会正确显示LoginPage,但这就是问题开始的地方。

这是我的LoginController.cs:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;

namespace ABMCEditAndReports.Controllers
{
    public class LoginController : Controller
    {
        //
        // GET: /Login/

        public ActionResult Index()
        {
            return View("LoginPage");
        }

    }
}

这是我的LoginPage.cshtml:

@{
    ViewBag.Title = "Login Page";
    ViewBag.Header = "Login Page";
}

<script type="text/javascript">
    $.ajaxSetup({ cache: false });

    function onClickLogin() {       
        if (Membership.ValidateUser(txtUsername.Text, txtPassword.Text)) {
           FormsAuthentication.RedirectFromLoginPage(txtUsername.Text, false);
        }
        else {
           lblErrorMessage.Text = "This works better if you use YOUR user name and password";
        }
    }
</script>

<div style="text-align:center;">
<h2>Login Required</h2>
User Name:
<input type="text" name="txtUsername" />
<br />
Password:
<input type="password" name="txtPassword" />
<br />
<input type="button" id="btnLogin" value="Login" onclick="onClickLogin()" />
<br />
<label id="lblErrorMessage" style="color:Red"></label>
</div>

第一个问题是,当我启动应用程序时,VS停在$ .ajaxSetup行,“Microsoft JScript运行时错误:'$'未定义”。

当我对此进行评论时,页面会显示,但是当我按下“登录”按钮时,它会在Membership.ValidateUser行停止,并显示“Microsoft JScript运行时错误:'成员身份'未定义”。

请注意,$ .ajaxSetup行在我的所有其他视图页面上都能正常工作。

我尝试将“@using System.Web.Security”添加到LoginPage.cshtml,并将命名空间System.Web.Security添加到web.config(主要的一个和/ Views中的一个);什么都没有解决。

我是以正确的方式来做这件事的吗?我应该在.cs文件中调用ValidateUser吗?如果是这样,我如何调用RedirectFromLoginPage? (为什么不接受$ .ajaxSetup?)

1 个答案:

答案 0 :(得分:2)

FormsAuthentication可以与ASP.NET MVC一起使用,但尝试在服务器上进行身份验证。这是一个例子:

控制器:

namespace ABMCEditAndReports.Controllers
{
    public class LoginController : Controller
    {
        //
        // GET: /Login/

        public ActionResult Index(string returnUrl = null)
        {
            this.ViewBag.ReturnUrl = returnUrl;
            return View("LoginPage");
        }

        public ActionResult Index(LogInViewModel model, string returnUrl)
        {
            if (this.ModelState.IsValid && Membership.ValidateUser(model.UserName, model.Password))
            {
                FormsAuthentication.SetAuthCookie(model.UserName, false);
                return this.Redirect(returnUrl);
            }

            this.ModelState.AddModelError("", "The user name or password provided is incorrect.");
            return this.View(model);
        }
    }
}

型号:

namespace ABMCEditAndReports.Models
{
    public class LogInViewModel
    {
        [Display(Name = "User Name")]
        public string UserName { get; set; }

        [Display(Name = "Password")]
        [DataType(DataType.Password)]
        public string Password { get; set; }
    }
}

查看:

@model ABMCEditAndReports.Models.LogInViewModel
@using (Html.BeginForm(new { ReturnUrl = ViewBag.ReturnUrl }))
{
    @Html.ValidationSummary()
    <h2>Please sign in</h2>
    <div>
      @Html.DisplayNameFor(model => model.UserName)
      @Html.EditorFor(model => model.UserName)
    </div>
    <div>
      @Html.DisplayNameFor(model => model.Password)
      @Html.EditorFor(model => model.Password)
    </div>
    <button type="submit">Sign in</button>
}