* Razor - INPUTタグで日付を編集する [#e5109e20]
** Viewでフォーマットを指定する [#n566d507]
@Html.TextBoxFor(m => m.Date, "{0:dd/MM/yyyy}", new { @class = "width-xx" })
*** 参考 [#s97a4fa4]
http://stackoverflow.com/questions/17602594/mvc-4-editorfor-textboxfor-and-date-field
** ViewModelでDisplayFormatアトリビュートを使う [#d65ed531]
*** ViewModel [#le0113a4]
[Display(Name = "When was that document issued ?")]
[DisplayFormat(ApplyFormatInEditMode = true, DataFormatString = "{0:d}")]
public DateTime? LiquorLicenceDocumentIssueDate { get; set; }
*** View [#f0b9e6aa]
@Html.EditorFor(m => m.LiquorLicenceDocumentIssueDate)
*** 参考 [#m5460fae]
http://stackoverflow.com/questions/4679352/converting-datetime-format-using-razor/8362126#8362126
** 参考 [#q5f7abed]
http://stackoverflow.com/questions/11204657/how-to-change-the-datetime-format-using-toshortdatestring-and-datepicker