是否可以仅使用 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))
{
答案 0 :(得分:4)
好的,这是解决方案
var userId = "123";
using (UsersContext db = new UsersContext())
{
UserProfile userProfile = db.UserProfiles.FirstOrDefault(u => u.UserId == userId);
FormsAuthentication.SetAuthCookie(userProfile.UserName, false);
}