@using Bowin.Web.Controls.Mvc; @using EMIS.Web.Controls; @using Bowin.Common.Utility; @{ ViewBag.Title = "List"; Guid? educationSchedulingClassID = Request.QueryString["educationSchedulingClassID"].ParseStrTo(); }
@using (Html.BeginForm()) {
排课班学生列表
@Html.DataGrid(new DataGridOptions { Columns = new List() { new CheckBoxFieldColumn{ HeaderText="", FieldName="UserID" }, new BoundFieldColumn { FieldName="LoginID", HeaderText="学生号", Align=AlignStyle.Center }, new BoundFieldColumn { FieldName="Name", HeaderText="姓名", Align=AlignStyle.Center } }, IsCheckOnSelect = true, DataSourceUrl = Url.Content("~/EducationMissionClass/EducationSchedulingClassStudentList?educationSchedulingClassID=" + educationSchedulingClassID), ID = "dgEducationSchedulingClassStudentList", IsPagination = true, IsShowRowNumbers = true, IsSingleSelect = false })
}