|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
源代码保护方面其实现在考虑得没那么多了..NET也可以反编译.ASP写得复杂的话别人能看得懂的话.他也有能力自己写了.这方面担心的倒不太多.纵观现在网上可以下载的那些所谓BBS还有什么网站等等的源代码excel|odbc|数据扑咚扑咚于8/30/20014:52:49PM加贴在JoyASP←前往版面:
例子:
在"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"是不可的。
%>
</p>只要你想学,就没什么优缺点,上面那位大哥已经把网上的评论说了,但我认为想学哪个都一样,不然它就不可能在当今时代数字艺术方面存活到今天 |
|