Convert textbox type to password in asp.net mvc

后端 未结 11 2523
感情败类
感情败类 2020-12-18 18:13

How do I convert a textbox type to password in asp.net mvc?

11条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-18 18:27

    below is extention based on html helper:

    before converting:

    @Html.TextBox("mypass", null, new { style = "width: 200px;" })
    

    After converting:

    @Html.Password("mypass", null, new { style = "width:200px;" })
    

    hope helps someone.

提交回复
热议问题