How do I add placeholder text from the model into a MVC view?

后端 未结 9 1070
余生分开走
余生分开走 2021-02-05 12:43

I have a model:

[DataType(DataType.EmailAddress)]
[DisplayFormat(ConvertEmptyStringToNull = true)]
[Display(Prompt = \"Email Address\")]
public string Email { ge         


        
9条回答
  •  说谎
    说谎 (楼主)
    2021-02-05 13:20

    A little late, but if someone is still looking for it...

    @Html.EditorFor(model => model.Email, 
    new { htmlAttributes = new { @class = "form-control input-md",
    @placeholder = "Whatever you want as a placeholder" } })
    

    It's perfect and clean!

提交回复
热议问题