31.

Is @Html.Password("txtpassword") the same as <input id="txtpassword" name="txtpassword" type="text" />

@Html.Password("txtpassword") equates to <input id="txtpassword" name="txtpassword" type="password" />

Note: type is "password" not "text"