MVC3 RC2 と DataAnnotations で装飾されたモデルを使用して日付をフォーマットする方法を理解しようとしています。
これは私のモデルです...
public class Model
{
[Display(Name = "Date of Birth")]
[DisplayFormat(@DataFormatString = "MM/dd/yyyy")]
public DateTime DateOfBirth { get; set; }
}
これは私のコントローラーです...
public class IndexController : Controller
{
public ActionResult Index()
{
return View( new Model() {DateOfBirth = DateTime.Now});
}
}
これが私の見解です...
@model MvcApplication6.Models.Model
@Html.LabelFor(m=>m.DateOfBirth)
@Html.TextBoxFor(m => m.DateOfBirth)
@Html.EditorFor(m => m.DateOfBirth)
サイトを実行すると、両方のコントロールについて、文字列に時間が含まれるテキストボックスがページに表示されますが、必要なのは日付だけです (モデルの装飾されたプロパティで指定されています)。
このパターンには、ModelMetaData に関するBrad Wilson の記事を使用しました。
私が間違っていることは明らかですか?