TextBoxFor で DateTime を使用して n を編集しようとしています ~ しかし、私のモデルの日時形式の 1 つは常に制御できません ~
意見
@Html.TextBoxFor(model => model.ClassDate,"{0:yyyy-MM-dd}", new { @readonly = "true",style = "width:135px",type="date"})
@Html.TextBoxFor(model => model.ClassDate,"{0:yyyy-MM-dd}", new { @readonly = "true",style = "width:135px"})
@Html.TextBoxFor(model => model.TeacherInfo.BDay,"{0:yyyy-MM-dd}", new { @readonly = "true",style = "width:135px",type="date"})
@Html.TextBoxFor(model => model.TeacherInfo.BDay,"{0:yyyy-MM-dd}", new { @readonly = "true",style = "width:135px"})
モデル(外部キーを使用して2つのテーブルnがあります)
[DataType(DataType.Date)]
[DisplayFormat(DataFormatString = "{0:yyyy-MM-dd}", ApplyFormatInEditMode = true)]
public Nullable<System.DateTime> BDay { get; set; }
[DataType(DataType.DateTime)]
[DisplayFormat(DataFormatString = "{0:MM-dd-yyyy}", ApplyFormatInEditMode = true)]
public Nullable<System.DateTime> ClassDate { get; set; }
結果 https://docs.google.com/file/d/0B53j6yH_R3ZeTjc2SmMxYS1OUkk/edit?usp=sharing