在我的MVC项目中,验证器无意中要求在登录时检查RememberMe复选框。在IE8上,它不允许用户登录,除非他们勾选记住我框。所有其他浏览器都很好,包括IE7。
<input id="RememberMe" type="checkbox" value="true" name="RememberMe" data-val-required="The Remember me? field is required." data-val="false">
我试图将实体框架中的属性更改为可以为空的bool?但这会产生错误:
The best overloaded method match for 'WebMatrix.WebData.WebSecurity.Login(string, string, bool)' has some invalid argument
所以,看起来我不能改变它来解决这个问题。我也试过用jQuery编写属性,但它会被改回来。这实际上是随机的,我很惊讶这看起来是开箱即用的技术。任何帮助将不胜感激。
以下是登录模型:
public class LoginModel
{
[EmailAddressAttribute]
[Required]
[StringLength(80)]
[Display(Name = "Email Address")]
public string UserName { get; set; }
[Required]
[DataType(DataType.Password)]
[Display(Name = "Password")]
public string Password { get; set; }
[Display(Name = "Remember me?")]
public bool RememberMe { get; set; }
}
这是执行登录的控制器,因为您可以看到它是开箱即用的MVC内容:
[HttpPost]
[AllowAnonymous]
[ValidateAntiForgeryToken]
public ActionResult Login(LoginModel model, string returnUrl)
{
if (ModelState.IsValid && WebSecurity.Login(model.UserName, model.Password, persistCookie: model.RememberMe))
{
return RedirectToLocal(returnUrl);
}
// If we got this far, something failed, redisplay form
ModelState.AddModelError("", "The user name or password provided is incorrect.");
return View(model);
}
这是视图:
@Html.ValidationSummary(true)
<ol class="form">
<li>
@Html.LabelFor(m => m.UserName)
@Html.TextBoxFor(m => m.UserName, new { id="txUserName" })
@Html.ValidationMessageFor(m => m.UserName)
</li>
<li>
@Html.LabelFor(m => m.Password)
@Html.PasswordFor(m => m.Password)
@Html.ValidationMessageFor(m => m.Password)
</li>
<li>
@Html.LabelFor(m => m.RememberMe, new { @class = "checkbox" })
@Html.CheckBoxFor(m => m.RememberMe)
</li>
<li class="form-buttons">
<input type="submit" value="Log in" /> @Html.ActionLink("Forgot Password", "ForgotPassword", "Account")
</li>
</ol>
答案 0 :(得分:2)
经过一番研究,据说这是由IE7&amp;仅限Internet Explorer 10中的IE8兼容模式。
在相同的条件下运行不显眼的jquery验证也会导致其他问题。