モデルを次のように更新する必要があります。
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 ヘルパーでのみ機能するようです。