1

是否可以仅使用UserId在标准ASP .NET MVC4项目 下对用户进行身份验证,以便我们可以跳过下面的代码?

[HttpPost]
[AllowAnonymous]
[ValidateAntiForgeryToken]
public ActionResult Login(LoginModel model, string returnUrl)
{
    if (ModelState.IsValid && WebSecurity.Login(model.UserName, model.Password, persistCookie: model.RememberMe))
    {
4

1 回答 1

4

好的,这是解决方案

var userId = "123";

using (UsersContext db = new UsersContext())
{
   UserProfile userProfile = db.UserProfiles.FirstOrDefault(u => u.UserId == userId);
   FormsAuthentication.SetAuthCookie(userProfile.UserName, false);
}
于 2013-10-01T17:27:11.730 回答