@model EMIS.ViewModel.ExaminationManage.TimeSegmentView @using EMIS.Web.Controls; @using Bowin.Web.Controls.Mvc; @{ ViewBag.Title = "SetTime"; } @section scripts{ }
@Html.LabelFor(x => x.ExaminationDate): | @Html.TextBoxFor((x => x.ExaminationDate), new TextBoxOptions { TextBoxType = TextBoxType.Date, IsRequired = true }) | ||
@Html.LabelFor(x => x.StartTime): | @Html.TextBoxFor(x => x.StartTime, new TextBoxOptions { TextBoxType = TextBoxType.Time, IsRequired = true }) | @Html.LabelFor(x => x.EndTime): | @Html.TextBoxFor(x => x.EndTime, new TextBoxOptions { TextBoxType = TextBoxType.Time, IsRequired = true }) |