我正在以经典 asp 格式导出 excel 工作表中的数据。我正在使用外部表方法在 Excel 表中导出数据。
我想知道有没有办法将数据导出到 Excel 工作表单元格中。因为当我使用导出的文件进行导入时,我会向我显示错误。
问候和感谢,
果冻赛尼
我正在以经典 asp 格式导出 excel 工作表中的数据。我正在使用外部表方法在 Excel 表中导出数据。
我想知道有没有办法将数据导出到 Excel 工作表单元格中。因为当我使用导出的文件进行导入时,我会向我显示错误。
问候和感谢,
果冻赛尼
也许不完全是您所需要的,但这有效:
<%
Set ExcelApp = CreateObject("Excel.Application")
ExcelApp.Application.Visible = True
ExcelApp.DisplayAlerts = False
Set ExcelBook = ExcelApp.Workbooks.Add
ExcelBook.Worksheets(1).Cells(1, 1).Font.Size = 12
ExcelBook.Worksheets(1).Cells(1, 1).Font.Bold = True
ExcelBook.Worksheets(1).Cells(1, 1).Value="Hello"
ExcelBook.SaveAs Server.MapPath(".") & "\Hello.xls"
ExcelApp.Application.Quit
Set ExcelApp = Nothing
%>