How do you format a DateTime that's displayed by TextBoxFor() in MVC3?

前端 未结 5 1978
感情败类
感情败类 2020-12-18 20:59

I have ASP.NET MVC3 installed. I need datepicker with formatted date. I tried this, but it\'s not working (when passing \"{0:dd/MM/yyyy}\" as format parameter, it still does

5条回答
  •  盖世英雄少女心
    2020-12-18 21:39

    The syntax is: @Html.TextBoxFor( expression, string format, object htmlAttributes)

    eg:

       @Html.TextBoxFor(x => x.DateUtc, "{0:yyyy-MM-dd HH:mm:ss}",
                new { @class = "form-control", placeholder = "Enter Title", id="myDate"})
    

提交回复
热议问题