在我的change-passsword表单中,有以下字段:
<dt>Old Password</dt>
@Html.TextBoxFor(model => model.user_ID, new { style = "width:200px;margin-top:-4px;", maxlength = 25 })
@Html.ValidationMessageFor(model => model.user_ID)
<dt>Old Password</dt>
<dd>
@Html.PasswordFor(model => model.txtOldPassword, new { style = "width:200px;margin-top:-4px;", maxlength = 10, @class = "smallcase",autocomplete = "off" })
@Html.ValidationMessageFor(model => model.txtOldPassword)
</dd>
..........................
每次加载表单或编辑userid
字段时,密码字段都会自动填充用户标识。当我使用@Html.TextBoxFor()
时,问题就解决了。为什么会这样?我必须使用@Html.textBoxFor()
。正如您在代码中看到的那样,我尝试关闭autocomplete
。但失败了。
答案 0 :(得分:0)
在其他浏览器中尝试,我认为您的浏览器正在缓存用户名和密码表单。我知道Chrome会为我做这件事。当您确定未设置模型上的oldPassword字段时。我一定是浏览器问题。