Heyo,我是C#MVC的新手,我在验证登录时遇到了问题。希望你能提供帮助。
使用调试模式,我似乎能够访问数据库并收集正确的信息以便登录,但是一旦我被重定向,
@if (this.Context.User.Identity.IsAuthenticated)
跳过并在我希望它显示Account |时转到show login code block登出。 我猜我正在使用错误的代码来执行此操作。
这是我的控制器代码。
[HttpPost]
public ActionResult Login([Bind(Include="Email, Password")] User user)
{
if (ModelState.IsValid)
{
//Get info from database
var result = from u in db.Users
where (u.Email == user.Email && u.Password == user.Password)
select u;
if (result.Count() == 1)
{
FormsAuthentication.SetAuthCookie(user.Email, false);
return RedirectToAction("Index", "Pictures");
}
else
{
ModelState.AddModelError("", "Invalid Username and Password combination");
}
}
return View();
}
部分查看代码
@model Project1.Models.Users
<div id="login">
@if (this.Context.User.Identity.IsAuthenticated)
//***This bit is not validating***
{
@:My Account | Logout
}
else
{
using (Html.BeginForm("Login", "Users"))
{
<span>
@Html.LabelFor(u => u.Email)
@Html.TextBoxFor(u => u.Email)
</span>
<span>
@Html.LabelFor(u => u.Password)
@Html.PasswordFor(u => u.Password)
</span>
<span class="login">
@Html.ActionLink("Register", "Register", "Users")
<input class="login" type="submit" name="login" value="Log In" />
</span>
}
}
我还在学习基础知识,所以请尽量保持简单!我不太担心密码盐和安全性,我只想立即登录。一旦我更有经验,我会让它更安全。 谢谢!
答案 0 :(得分:1)
据我所知,它看起来是正确的,但您在webconfig中有什么设置?我在system.web中看起来像这样:
<authentication mode="Forms">
<forms loginUrl="~/Account/LogOn" timeout="2880" cookieless="UseCookies" />
</authentication>