如何在不登录的情况下验证用户身份

时间:2013-10-01 17:03:21

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

是否可以仅使用 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))
    {

1 个答案:

答案 0 :(得分:4)

好的,这是解决方案

var userId = "123";

using (UsersContext db = new UsersContext())
{
   UserProfile userProfile = db.UserProfiles.FirstOrDefault(u => u.UserId == userId);
   FormsAuthentication.SetAuthCookie(userProfile.UserName, false);
}