@using Bowin.Web.Controls.Mvc; @using EMIS.Web.Controls; @{ var schoolYear = ViewData["schoolYear"]; ViewBag.Title = "CreatePlan"; } @section scripts{ }
@Html.Label("学年学期"): | @Html.DropdownList(new DropdownListOptions { BindType = DropdownListBindType.PleaseSelect, ItemSourceUrl = Url.Content("~/SchoolYear/DropDownAfterCurrent"), ID = "SchoolyearDropdown", Name = "SchoolyearDropdown", SelectedValue = schoolYear }) |