Home
> Tips & Tricks > Issue: Password field returned empty in edit mode
Issue: Password field returned empty in edit mode
This is as per design. Passwords are not filled to prevent accidental resubmits, and to prevent the page from containing unencrypted passwords.
Here is the solution
@Html.PasswordFor(model => model.Password,new{@Value=Model.Password})
OR
@Html.PasswordFor(model => model.Password, new { placeholder = "********" })
This will put some 'visual' asterisks in the input box which will be disappeared when the user starts entering an actual value.
Hope this help!
Categories: Tips & Tricks
Comments (0)
Trackbacks (0)
Leave a comment
Trackback
Comments