Select from following answers:- @Html.EditorFor(model => model.Email)
- @Html.TextBox(“email”, Request[“email”],new{@placeholder="you@your.com"}
- @Html.TextBox(“email”, Request[“email”], new { size = 20 })

- All Above
It is the proper way to limit the size of a certain html input field. EditorFor not validate or set the size requirement.
Show Correct Answer
|
Alert Moderator