@using Bowin.Web.Controls.Mvc; @using EMIS.Web.Controls; @{ ViewBag.Title = "GradeyearReport"; } @section scripts{ } @Html.Position()
查询条件
  • 学年学期:
  • @Html.DropdownList(new DropdownListOptions { BindType = DropdownListBindType.None, ItemSourceUrl = Url.Content("~/SchoolYear/DropDown"), SelectedValue = BaseExtensions.GetCurrentSchoolYearID(), ID = "ddlSchoolyear", Name = "ddlSchoolyear" })
  • @EMIS.Utility.RSL.Get("College"):
  • @Html.DropdownList(new DropdownListOptions { BindType = DropdownListBindType.PleaseSelect, ItemSourceUrl = Url.Content("~/College/CollegeDropdownListOnlyCollege"), ID = "ddlCollege", Name = "ddlCollege" })
  • 年级:
  • @Html.SchoolYearDropDownList(new DropdownListOptions { Name = "ddlYear", BindType = DropdownListBindType.PleaseSelect, ID = "ddlYear" })
  • @Html.Button(new ButtonOptions { OnClick = "reload()", Icon = ButtonIcon.Search, Text = "查询" })