@model EMIS.ViewModel.EducationManage.TrainingClassView @using EMIS.Web.Controls; @using Bowin.Web.Controls.Mvc; @{ ViewBag.Title = "Edit"; } @section scripts{ }
@using (Ajax.BeginForm(new AjaxOptions { OnSuccess = "EMISFunction.FormSuccess", OnBegin = "EMISFunction.FormSubmit", OnComplete = "EMISFunction.FormComplete" })) { @Html.HiddenFor(x => x.TrainingClassID)
培训班级
@Html.ContextMenuBar("Edit")
@Html.LabelFor(x => x.SchoolyearCode): @Html.TextBoxFor(x => x.SchoolyearCode, new TextBoxOptions() { IsEnabled = false }) @Html.LabelFor(x => x.ExaminationBatchName): @Html.TextBoxFor(x => x.ExaminationBatchName, new TextBoxOptions() { IsEnabled = false })
@Html.LabelFor(x => x.ExaminationTypeName): @Html.TextBoxFor(x => x.ExaminationTypeName, new TextBoxOptions() { IsEnabled = false }) @Html.LabelFor(x => x.ExaminationProjectName): @Html.TextBoxFor(x => x.ExaminationProjectName, new TextBoxOptions() { IsEnabled = false })
@Html.LabelFor(x => x.Name): @Html.TextBoxFor(x => x.Name, new Dictionary { { "style", "width: 75%" } })
}