@using Bowin.Web.Controls.Mvc; @using EMIS.Web.Controls; @model EMIS.ViewModel.TeachingMaterial.StudentDistributeView @{ ViewBag.Title = "CreatePlan"; var schoolYear = ViewData["schoolYear"]; } @section scripts{ }
@using (Ajax.BeginForm(new AjaxOptions { Url = "/StudentDistribute/CreatePlan?schoolyearID=" + schoolYear, OnSuccess = "EMISFunction.FormSuccess", OnBegin = "EMISFunction.FormSubmit", OnComplete = "EMISFunction.FormComplete" })) {
@*
专业计划生成
*@
@Html.ContextMenuBar("CreatePlan")
@Html.Label("学年学期"): @Html.DropdownList(new DropdownListOptions { BindType = DropdownListBindType.PleaseSelect, ItemSourceUrl = Url.Content("~/SchoolYear/DropDownAfterCurrent"), ID = "SchoolyearDropdown", Name = "SchoolyearDropdown", SelectedValue = schoolYear })
}