Ejemplo n.º 1
0
 protected FileResult ExcelResult(string fileName, IPagedList list)
 {
     list.NeedPage = false;
     list.DoSearch();
     return(File(list.GenerateExcel(), "application/x-excel", fileName + ".xls"));
 }