我有以下剃刀代码用于显示文本框和密码
@Html.EditorFor(model => model.LoginName,new { htmlAttributes = new { @class = "form-control" } }) @Html.PasswordFor(model => model.LoginPassword,new { htmlAttributes = new { @class = "form-control" } })
但是,渲染时,文本框的外观与密码文本框不同.为什么两个班级相同?
上面两行之间没有任何css参考,所以对这种不一致感到疑惑.
有人遇到过这个问题吗?我不想为密码文本框写一个自定义的CSS,它看起来像用户名文本框.
谢谢
解决方法
将@ Html.PasswordFor的语法更改为我在下面显示的内容,它将正确应用您的课程.
@Html.EditorFor(model => model.LoginName,new { htmlAttributes = new { @class = "form-control" } }) @Html.PasswordFor(model => model.LoginPassword,new { @class = "form-control" })
原因是second argument for EditorFor
is object additionalViewData
,其中second argument for PasswordFor
is object htmlAttributes
.
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。