您如何允许用户切换@ Html.PasswordFor的密码可见性?

时间:2019-03-30 03:31:59

标签: html model-view-controller passwords toggle helper

我想允许用户通过单击Web应用程序上的“显示”按钮或“眼睛”按钮来切换密码可见性。浏览完StackOverflow之后,最好的解决方案是使用:

  1. @ Html.EditorFor(m => m.Password),但我不知道该怎么做,并且

  2. 将密码类型转换为文本类型。我不想这样做,因为我需要传递密码值以对照数据库进行检查。链接是: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" })

0 个答案:

没有答案