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