datetime – 与@ Html.TextBoxFor()一起使用时,DisplayFormat属性的DataFormatString参数不起作用

前端之家收集整理的这篇文章主要介绍了datetime – 与@ Html.TextBoxFor()一起使用时,DisplayFormat属性的DataFormatString参数不起作用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个具有一些日期和时间属性的模型.

时间属性具有以下DataAnnotation:

[DisplayFormat(ApplyFormatInEditMode = true,DataFormatString = "{0:hh:mm tt}")]

日期属性包括

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

但是,当我使用@ Html.EditorFor()而不是@ Html.TextBoxFor()时,这些仅受到尊重.

我目前的情况不允许我使用EditorFor,那么如何强制TextBoxFor尊重这些格式字符串呢?

解决方法

您可以尝试以下方法
@Html.TextBoxFor(m => m.EndDate,"{0:d MMM yyyy}")

还有一个带有html属性的重载,所以你可以设置CSS类,连接datepickers等:

@Html.TextBoxFor(m => m.EndDate,"{0:d MMM yyyy}",new { @class="input-large" })
原文链接:https://www.f2er.com/html/225947.html

猜你在找的HTML相关文章