|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
缺点:正版成本价格贵(盗版就不说了)、不够安全,大多数服务器用windows系统,没有linux安全excel|数据例子:
在"c:excelook1.xls"存在一个EXCEL表book1.xsl,表的布局以下:
1序号称号金额
21张三100
32李四200
43王五300
序号字段不为空
注重:excel肇端行是1而不是为0
<%@language=vbscript%>
<%
SetxlApp=server.CreateObject("Excel.Application")
strsource="c:excelook1.xls"
Setxlbook=xlApp.Workbooks.Open(strsource)
Setxlsheet=xlbook.Worksheets(1)
i=1
response.write"<tablecellpadding=0cellspacing=0border=1width=500>"
whilexlsheet.cells(i,1)""
response.write"<tr>"
response.write"<tdheight=20align=centerwidth=100>"&xlsheet.Cells(i,1)&"</td>"
response.write"<tdheight=20align=centerwidth=200>"&xlsheet.Cells(i,2)&"</td>"
response.write"<tdheight=20align=centerwidth=200>"&xlsheet.Cells(i,3)&"</td>"
response.write"</tr>"
i=i+1
wend
response.write"</table>"
setxlsheet=nothing
setxlbook=nothing
xlApp.quit万万记着要加这一句,不然每运转一次你的呆板里就增添一个excel历程,并且没法开释。我试过"set
xlApp=nothing"是不可的。
%>
asp是基于web的一种编程技术,可以说是cgi的一种。它可以完成以往cgi程序的所有功能,如计数器、留言簿、公告板、聊天室等等。 |
|