@using Bowin.Web.Controls.Mvc; @using EMIS.Web.Controls; @{ ViewBag.Title = "CreateEvaluationInventory"; string schoolYear = ViewData["schoolYear"].ToString(); }
@using (Ajax.BeginForm(new AjaxOptions { Url = "/EvaluationSetting/CreateEvaluationInventory", OnSuccess = "EMISFunction.FormSuccess", OnBegin = "EMISFunction.FormSubmit", OnComplete = "EMISFunction.FormComplete" })) {
评价生成
@Html.ContextMenuBar("Edit")
学年学期: @Html.DropdownList(new DropdownListOptions { BindType = DropdownListBindType.PleaseSelect, ItemSourceUrl = Url.Content("~/SchoolYear/DropDown"), ID = "SchoolyearDropdown", Name = "SchoolyearDropdown", SelectedValue = schoolYear })
}
@section scripts{ }