我想允许用户通过单击Web应用程序上的“显示”按钮或“眼睛”按钮来切换密码可见性。浏览完StackOverflow之后,最好的解决方案是使用:
@ Html.EditorFor(m => m.Password),但我不知道该怎么做,并且
将密码类型转换为文本类型。我不想这样做,因为我需要传递密码值以对照数据库进行检查。链接是:how to show the password hidden field in mvc using Html helper
如何设置密码可见性切换开关?
谢谢。
@Html.PasswordFor(m => m.Password, new { @class = "form-control", placeholder = "Type your password here" })