Instead of using the object directly, on a simple Razor View I have a form using as it+s model
a decorator object.
public class GlobalAccount
{
Further to Kieron's answer, in MVC3 it is actually NOT better to use Html.EditorFor for the Password inputs, as for some reason, if the server returns the page (say the username password combo is incorrect) then with EditorFor, the password is transmitted back to the page (and a view source the password is visible)
When using the Html.PasswordFor the password is not transmitted back to the client.
You should use Html.Password
, or even better use Html.EditorFor
which will read the DataType.Password
and output a password type input for you.
The Html.TextBoxFor
is just text based input, not as password based one.