在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
服务器端实现DataGrid导出为excel
1 }
在需要导出的地方调用上面的方法就可以。不过这样的实现有两个问题:第一,datagrid中不能包含模板列;第二,只能够导出当前显示在datagrid的数据,无法在分页的情况下导出全部的查询结果。
1 /*
2 * 将DataGrid导出为Excel文件 3 * 4 * @param strTitle 文件标题 5 * @param dgData 待导出的DataGrid 6 * @param iStartCol 起始列序号 7 * @param iEndCol 结束列序号 8 * 9 * 创建人: calvin 10 * 创建日期: 2005-10-08 11 * 修改人: 12 * 修改日期: 13 **/ 14 function DataGrid2Excel(strTitle, dgData, iStartCol, iEndCol) 15 { 16 // 定义Excel Applicaiton Object 17 var appExcel = null; 18 // 当前激活的工作簿 19 var currentWork = null; 20 var currentSheet = null; 21 22 try 23 { 24 // 初始化application 25 appExcel = new ActiveXObject("Excel.Application"); 26 appExcel.Visible = true; 27 } 28 catch(e) 29 { 30 window.alert("Please Install Excel First"); 31 32 return; 33 } 34 35 // 获取当前激活的工作部 36 currentWork = appExcel.Workbooks.Add(); 37 currentSheet = currentWork.ActiveSheet; 38 39 // 填充excel内容 40 // 设置标题 41 currentSheet.Cells(1,1).Value = strTitle; 42 currentSheet.Cells(1,1).Value = dgData.innerText; 43 window.alert(dgData.innerHTML); 44 45 // 填充内容 46 for (var iRow = 0; iRow < dgData.rows.length - 1; iRow++) 47 { 48 // 显示指定列的内容 49 for (var iCol = iStartCol; iCol <= iEndCol; iCol++) 50 { 51 currentSheet.Cells(iRow + 2, iCol + 1).Value = 52 dgData.rows[iRow].cells[iCol].innerText; 53 } 54 } 55 } 下面是调用的例子
1 /**
2 * 导出dgData中0-3列的数据到excel文件中 3 **/ 4 function ToExcel() 5 { 6 DataGrid2Excel("使用javascript导出excel的例子", document.getElementsById("dgData"), 0, 3); 7 }
1 }
|
请发表评论