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

后端 未结 9 1069
余生分开走
余生分开走 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:25

    you can use it as follows for the date which will also give you a "datetime" picker.

    [DisplayFormat(DataFormatString ="{0:yyyy-MM-dd}",ApplyFormatInEditMode =true)]
    

提交回复
热议问题