* HTMLヘルパー EditorForでカスタムテンプレートを使う [#dfaaf65a]

*** Views/Home/index.cshtml [#p6a78b4e]
 @Html.EditorFor(m => m.MyDate, "_DateEditor")

*** Views/Shared/EditorTemplates/_DateEditor.cshtml [#m00c19b1]
 @model DateTime
 @Html.TextBox("", Model.ToString("yyyy-MM-dd"),
     new { @Value = Model.Year <= 1900 ? "" :  Model.ToString("yyyy-MM-dd")})

** 参考 [#n4e40865]
http://stackoverflow.com/questions/3735400/html-attributes-for-editorfor-in-asp-net-mvc


トップ   編集 差分 バックアップ 添付 複製 名前変更 リロード   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS