ASP教程之导出Excel数据的四种方法

我们有时候需要把数据导出来,作为参考等等。下面就为你介绍,ASP导出Excel书籍的四种方法。

一、使用OWC

什么是OWC?

OWC是office Web Compent的缩写,即Microsoft的office Web组件,它为在Web中绘制图形提供了灵活的同时也是最基本的机制。在一个intranet环境中,如果可以假设客户机上存在特定的浏览器和一些功能强大的软件(如IE5和office 2000),那么就有能力利用office Web组件提供一个交互式图形开发环境。这种模式下,客户端工作站将在整个任务中分担很大的比重。

以下为引用的内容:

 
 
 
  1. <%Option Explicit 
  2. Class ExcelGen 
  3. Private obJSPreadsheet 
  4. Private iColOffset
  5. Private iRowOffset 
  6. Sub Class_Initialize() 
  7. Set obJSPreadsheet = Server.CreateObject("OWC.Spreadsheet") 
  8. iRowOffset = 2 
  9. iColOffset = 2 
  10. End Sub
  11. Sub Class_Terminate() 
  12. Set obJSPreadsheet = Nothing 'Clean up 
  13. End Sub
  14. Public Property Let ColumnOffset(iColOff) 
  15. If iColOff > 0 then 
  16. iColOffiColOffset = iColOff 
  17. Else 
  18. iColOffset = 2 
  19. End If 
  20. End Property
  21. Public Property Let RowOffset(iRowOff) 
  22. If iRowOff > 0 then 
  23. iRowOffiRowOffset = iRowOff 
  24. Else 
  25. iRowOffset = 2 
  26. End If 
  27. End Property Sub GenerateWorksheet(objRS) 
  28. 'Populates the Excel worksheet based on a Recordset's contents 
  29. 'Start by displaying the titles 
  30. If objRS.EOF then Exit Sub 
  31. Dim objField, iCol, iRow 
  32. iCol = iColOffset 
  33. iRow = iRowOffset 
  34. For Each objField in objRS.Fields 
  35. obJSPreadsheet.Cells(iRow, iCol).Value = objField.Name 
  36. obJSPreadsheet.Columns(iCol).AutoFitColumns 
  37. '设置Excel表里的字体 
  38. obJSPreadsheet.Cells(iRow, iCol).Font.Bold = True 
  39. obJSPreadsheet.Cells(iRow, iCol).Font.Italic = False 
  40. obJSPreadsheet.Cells(iRow, iCol).Font.Size = 10 
  41. obJSPreadsheet.Cells(iRow, iCol).Halignment = 2 '居中 
  42. iColiCol = iCol + 1 
  43. Next 'objField 
  44. 'Display all of the data 
  45. Do While Not objRS.EOF 
  46. iRowiRow = iRow + 1 
  47. iCol = iColOffset 
  48. For Each objField in objRS.Fields 
  49. If IsNull(objField.Value) then 
  50. obJSPreadsheet.Cells(iRow, iCol).Value = "" 
  51. Else 
  52. obJSPreadsheet.Cells(iRow, iCol).Value = objField.Value 
  53. obJSPreadsheet.Columns(iCol).AutoFitColumns 
  54. obJSPreadsheet.Cells(iRow, iCol).Font.Bold = False 
  55. obJSPreadsheet.Cells(iRow, iCol).Font.Italic = False 
  56. obJSPreadsheet.Cells(iRow, iCol).Font.Size = 10 
  57. End If 
  58. iColiCol = iCol + 1 
  59. Next 'objField 
  60. objRS.MoveNext 
  61. Loop 
  62. End Sub Function SaveWorksheet(strFileName)
  63. 'Save the worksheet to a specified filename 
  64. On Error Resume Next 
  65. Call obJSPreadsheet.ActiveSheet.Export(strFileName, 0) 
  66. SaveWorksheet = (Err.Number = 0) 
  67. End Function 
  68. End Class
  69. Dim objRS 
  70. Set objRS = Server.CreateObject("ADODB.Recordset") 
  71. objRS.Open "SELECT * FROM xxxx", "Provider=SQLOLEDB.1;Persist Security
  72. Info=True;User ID=xxxx;Password=xxxx;Initial Catalog=xxxx;Data source=xxxx;" 
  73. Dim SaveName 
  74. SaveName = Request.Cookies("savename")("name") 
  75. Dim objExcel 
  76. Dim ExcelPath 
  77. ExcelPath = "Excel\" & SaveName & ".xls" 
  78. Set objExcel = New ExcelGen 
  79. objExcel.RowOffset = 1 
  80. objExcel.ColumnOffset = 1 
  81. objExcel.GenerateWorksheet(objRS) 
  82. If objExcel.SaveWorksheet(Server.MapPath(ExcelPath)) then 
  83. 'Response.Write "已保存为Excel文件.
  84. 下载" 
  85. Else 
  86. Response.Write "在保存过程中有错误!" 
  87. End If 
  88. Set objExcel = Nothing 
  89. objRS.Close 
  90. Set objRS = Nothing 
  91. %> 

二、用Excel的Application组件在客户端导出到Excel或word

以下为引用的内容:

注意:两个函数中的“data“是网页中要导出的table的 id

 
 
 
  1.  

导出到Excel代码

 
 
 
  1.  
  2.  
  3.   导出到word代码
  4.  
  5. Sub buildDoc 
  6. set table = document.all.data 
  7. row = table.rows.length 
  8. column = table.rows(1).cells.length
  9. Set objwordDoc = CreateObject("word.Document")
  10. objwordDoc.Application.Documents.Add theTemplate, False 
  11. objwordDoc.Application.Visible=True
  12. Dim theArray(20,10000) 
  13. for i=0 to row-1 
  14. for j=0 to column-1 
  15. theArray(j+1,i+1) = table.rows(i).cells(j).innerTEXT 
  16. next 
  17. next 
  18. objwordDoc.Application.ActiveDocument.Paragraphs.Add.Range.InsertBefore("综合查询结果集") //显示表格标题
  19. objwordDoc.Application.ActiveDocument.Paragraphs.Add.Range.InsertBefore("") 
  20. Set rngPara = objwordDoc.Application.ActiveDocument.Paragraphs(1).Range 
  21. With rngPara 
  22. .Bold = True //将标题设为粗体 
  23. .ParagraphFormat.Alignment = 1 //将标题居中 
  24. .Font.Name = "隶书" //设定标题字体 
  25. .Font.Size = 18 //设定标题字体大小 
  26. End With 
  27. Set rngCurrent = objwordDoc.Application.ActiveDocument.Paragraphs(3).Range 
  28. Set tabCurrent = ObjwordDoc.Application.ActiveDocument.Tables.Add(rngCurrent,row,column)
  29. for i = 1 to column
  30. objwordDoc.Application.ActiveDocument.Tables(1).Rows(1).Cells(i).Range.InsertAfter theArray(i,1) 
  31. objwordDoc.Application.ActiveDocument.Tables(1).Rows(1).Cells(i).Range.ParagraphFormat.alignment=1 
  32. next 
  33. For i =1 to column 
  34. For j = 2 to row 
  35. objwordDoc.Application.ActiveDocument.Tables(1).Rows(j).Cells(i).Range.InsertAfter theArray(i,j) 
  36. objwordDoc.Application.ActiveDocument.Tables(1).Rows(j).Cells(i).Range.ParagraphFormat.alignment=1 
  37. Next 
  38. Next
  39. End Sub 
  40.  

三、直接在IE中打开,再存为Excel文件

以下为引用的内容:

把读出的数据用

格式,在网页中显示出来,同时,加上下一句即可把Excel表在客客户端显示。

<%response.ContentType ="application/vnd.ms-Excel"%>

注意:显示的页面中,只把

输出,***不要输出其他表格以外的信息。

四、导出以半角逗号隔开的csv

用fso方法生成文本文件的方法,生成一个扩展名为csv文件。此文件,一行即为数据表的一行。生成数据表字段用半角逗号隔开。(有关fso生成文本文件的方法,在此就不做介绍了)

CSV文件介绍 (逗号分隔文件)

选择该项系统将创建一个可供下载的CSV 文件; CSV是最通用的一种文件格式,它可以非常容易地被导入各种PC表格及数据库中。

请注意即使选择表格作为输出格式,仍然可以将结果下载CSV文件。在表格输出屏幕的底部,显示有 "CSV 文件"选项,点击它即可下载该文件。

希望本文介绍的三种方法,能够帮助到你。

网站名称:ASP教程之导出Excel数据的四种方法
链接URL:http://www.csdahua.cn/qtweb/news7/363157.html

网站建设、网络推广公司-快上网,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 快上网