@using Bowin.Web.Controls.Mvc;
@using EMIS.Web.Controls;
@{
ViewBag.Title = "AttachmentList";
}
@section scripts
{
}
@Html.DataGrid(new DataGridOptions
{
Columns = new List()
{
new LinkButtonColumn { FieldName="FileName", HeaderText="附件名称", Align=AlignStyle.Center, Handle="downLoad" }
},
IsCheckOnSelect = true,
DataSourceUrl = Url.Content("~/SOCDetailScore/AttachmentList"),
ID = "dgSOCDetailStudentAttachmentList",
IsPagination = true,
IsShowRowNumbers = true,
IsSingleSelect = false
})