您将需要更新您的模型,使其看起来像这样:
public class Person
{
[DisplayFormat(ApplyFormatInEditMode = true, DataFormatString = "{0:yyyy-mm-dd}")]
public DateTime DateOfBirth { get; set; }
}
您的控制器可能需要先解析字符串:
public ActionResult Index()
{
Person p = new Person();
p.DateOfBirth = DateTime.ParseExact("20120801","yyyyddmm",System.Globalization.CultureInfo.InvariantCulture);
return View(p);
}
然后要将其显示在您的视图上,您将需要使用类似于以下代码的内容:
<fieldset>
<legend>Person</legend>
<div class="editor-label">
@Html.LabelFor(model => model.DateOfBirth)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.DateOfBirth)
@Html.ValidationMessageFor(model => model.DateOfBirth)
</div>
<p>
<input type="submit" value="Create" />
</p>
</fieldset>
由于某种原因,DisplayFormat 属性似乎只适用于 EditorFor 和 DisplayFor 助手。