16

我会尝试一切,但不能使用这个(dd/MM/yyyy)日期格式,这总是门mm/dd/yyyy

[Display(Name = "Release Date")]
[DataType(DataType.DateTime)]
[DisplayFormat(ApplyFormatInEditMode = true, DataFormatString = "{0:dd/MM/yyyy}")]
public Nullable<DateTime> release_date { get; set; }

剃刀视图

@Html.EditorFor(model => model.release_date)

使用日期时间模板。

@model Nullable<System.DateTime>
@if (Model.HasValue)
{
    @Html.TextBox("", String.Format("{0:dd/MM/yyyy}", Model.Value))
}
else
{
    @Html.TextBox("", String.Format("{0:dd/MM/yyyy}", DateTime.Now))
}
@{
    string name = ViewData.TemplateInfo.HtmlFieldPrefix;
    string id = name.Replace(".", "_");
}
<script type="text/javascript">
    $(document).ready(function () {
        $("#@id").datepicker({
                dateFormat: "dd/mm/yy",
                showStatus: true,
                showWeeks: true,
                highlightWeek: true,
                numberOfMonths: 1,
                showAnim: "scale",
                showOptions: {
                    origin: ["top", "left"]
                }
          });
    });
</script>
4

3 回答 3

23

你在这里错过了两件事:

DataFormatString="{0:dd/MM/yyyy}"; //It is dd/MM/yyyy instead of dd/mm/yyyy

你还需要:

ApplyFormatInEditMode=true

尝试使用这个:

[Display(Name = "Release Date")]
[DataType(DataType.Date), DisplayFormat( DataFormatString="{0:dd/MM/yyyy}", ApplyFormatInEditMode=true )]
public Nullable<DateTime> release_date { get; set; }
于 2012-08-24T12:04:50.713 回答
5

{0:dd/mm/yyyy}应该是{0:dd/MM/yyyy}因为mm意味着分钟,而不是几个月:

[Display(Name = "Release Date")]
[DataType(DataType.DateTime)]
[DisplayFormat(ApplyFormatInEditMode = true, DataFormatString = "{0:dd/MM/yyyy}")]
public Nullable<DateTime> release_date { get; set; }
于 2012-08-24T12:02:46.433 回答
0

如果您使用数据注释。当显示它好。但是在编辑模式下。它仍然使用服务器格式(文化设置) DisplayFormat:喜欢它的名称,仅用于显示

有一些选项可以解决。- 使用您喜欢的格式作为字符串粘贴到服务器 - 编写客户绑定 - 在 web.config 中为格式设置全球化:dd/MM/yyy i 使用以下设置

<system.web>
    <globalization culture="en-GB"/>
....
于 2014-05-20T04:28:34.227 回答