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?
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?
Copyright © 2021 Jogjafile Inc.
Instead of using
EditorFor
usePasswordFor
like this: