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 に答える