@using Bowin.Web.Controls.Mvc; @using EMIS.Web.Controls; @{ var schoolYear = ViewData["schoolYear"]; ViewBag.Title = "CreatePlan"; } @section scripts{ }
@using (Ajax.BeginForm(new AjaxOptions { Url = "/StudentsOrder/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 })
}