ASP.NET @Html.EditorFor

1.2k Views Asked by At

I use @Html.EditoFor for a password input like this

@Html.EditorFor(model => model.Password)

I want to make it like this

<input type="password">

to be hide what I am typing with stars

Can Anyone Help me?

1

There are 1 best solutions below

0
On BEST ANSWER

Instead of using EditorFor use PasswordFor like this:

@Html.PasswordFor(model => model.Password)