我尝试为我的应用程序制作简单的自定义会员提供程序。我尝试使用登录功能登录到我的应用程序
我的代码有什么问题?为什么不重定向到家?/
[HttpPost]
public ActionResult Login(string UserName, string UserPassword)
{
if (Membership.ValidateUser(UserName, UserPassword))
{
return RedirectToAction("Index");
}
return View();
}
public override bool ValidateUser(string username, string password)
{
if (username == "admin" && password == "1234")
{
return true;
}
else
{
return false;
}
}
谁能告诉我,哪一部分是错的??