我很难弄清楚这一点,并且真的需要它来工作。我必须User.Identity.Name
使用内置身份验证覆盖 MVC 4 中的值。
这是我的控制器Login()
:
[HttpPost]
[AllowAnonymous]
[ValidateAntiForgeryToken]
public ActionResult Login(LoginModel model, string returnUrl)
{
//OLD CODES:
//if (ModelState.IsValid && WebSecurity.Login(model.UserName, model.Password, persistCookie: model.RememberMe))
//{
// return RedirectToLocal(returnUrl);
//}
// check if correct credentials
if (ModelState.IsValid && IsValidUser(model.UserName, model.Password))
return RedirectToAction("Index", "Home");
ModelState.AddModelError("", "The user name or password provided is incorrect.");
return View(model);
}
请注意,我修改WebSecurity.Login(model.UserName, model.Password)
为IsValidUser(model.UserName,model.Password)
检查用户帐户,它工作正常。
我想要的是覆盖User.Identity.Name
登录是否成功的值。
这是我的IsValidUser(model.UserName,model.Password)
方法:
public bool IsValid(string _username, string _pwd)
{
_username = _username.Trim();
OleDbConnection conn = new OleDbConnection();
string strCon = string.Format(GlobalDBStrings.CONNSTRING, _username, _pwd);
conn.ConnectionString = strCon;
bool isConnected = false;
try
{
conn.Open();
if (conn.State.ToString() == "Open")
{
// I WANT TO MODIFY THE VALUE OF User.Identity.Name here
// User.Identity.Name = ?
isConnected = true;
}
}//try
catch (Exception ex)
{
}//catch
finally
{
conn.Close();
conn.Dispose();
}//finally
return isConnected;
}
到目前为止,我已经尝试过User.Identity.Name = _username;
,但根本没有用。