现在我们针对EXCEL举另外一个例子,大家都询问如何用ASP建立图表的问题,以下就是解决方案
First we set the type of script
首先设定脚本类型
<%@ LANGUAGE="VBSCRIPT" %
Make the object, and set the object to an Excelsheet
建立Excelsheet对象
Dim MyExcelChart
Set MyExcelChart = CreateObject("Excel.Sheet")
' show or dont show excel to user, TRUE or FALSE
是否让用户看到EXCEL表格,真或假
MyExcelChart.Application.Visible = True
' populate the cells
添EXCEL表格
MyExcelChart.ActiveSheet.Range("B2:k2").Value = Array("Week1", "Week2", "Week3", "Week4", "Week5", "Week...[ 查看全文 ]