@model EMIS.ViewModel.TeachingMaterial.StockInView @using Bowin.Web.Controls.Mvc; @using EMIS.Web.Controls; @{ var schoolYear = ViewData["schoolYear"]; ViewBag.Title = "AutoNewStockIn"; } @section scripts{ }
@Html.LabelFor(x => x.SchoolyearID): | @Html.DropdownList(new DropdownListOptions { BindType = DropdownListBindType.PleaseSelect, ItemSourceUrl = Url.Content("~/SchoolYear/DropDownAfterCurrent"), ID = "SchoolyearDropdown", Name = "SchoolyearDropdown", SelectedValue = schoolYear }) |