所以在這記錄一下
<%
' 建立 Excel 應用程式
Set xlApp=Server.CreateObject("Excel.Application")
' 建立 WorkBook
Set xlBook = xlApp.Workbooks.Add
' 建立 WorkSheet
Set xlSheet = xlBook.Worksheets.Add
' 給儲存格值
xlSheet.Cells(1,1)="A1"
xlSheet.Cells(1,2)="B1"
' 範圍文字變粗體
xlSheet.Range("A1:B1").Font.Bold = true
' 範圍儲存格設框線
xlSheet.Range(xlSheet.Cells(1,1),
xlSheet.Cells(1,2)).Borders.Weight = 2
' WorkSheet 自動欄寬
xlSheet.Columns.Autofit()
' 存檔
xlBook.SaveAs "c:\test.xls"
xlBook.Close
xlApp.Quit
Set xlApp = Nothing
Set xlBook = Nothing
%>
' 建立 Excel 應用程式
Set xlApp=Server.CreateObject("Excel.Application")
' 建立 WorkBook
Set xlBook = xlApp.Workbooks.Add
' 建立 WorkSheet
Set xlSheet = xlBook.Worksheets.Add
' 給儲存格值
xlSheet.Cells(1,1)="A1"
xlSheet.Cells(1,2)="B1"
' 範圍文字變粗體
xlSheet.Range("A1:B1").Font.Bold = true
' 範圍儲存格設框線
xlSheet.Range(xlSheet.Cells(1,1),
xlSheet.Cells(1,2)).Borders.Weight = 2
' WorkSheet 自動欄寬
xlSheet.Columns.Autofit()
' 存檔
xlBook.SaveAs "c:\test.xls"
xlBook.Close
xlApp.Quit
Set xlApp = Nothing
Set xlBook = Nothing
%>
參考下篇 : ASP 操作 Excel 簡單範例 (二)
沒有留言:
張貼留言