|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
因为ASP脚本语言非常简单,因此其代码也简单易懂,结合HTML代码,可快速地完成网站的应用程序。还无法完全实现一些企业级的功能:完全的集群、负载均横。遍历|遍历目次|函数<%@Language=VBScript%>
<%
我写的一个遍历目次和目次下文件的函数,
%>
<%
functionbianli(path)
setfso=server.CreateObject("scripting.filesystemobject")
onerrorresumenext
setobjFolder=fso.GetFolder(path)
setobjSubFolders=objFolder.Subfolders
foreachobjSubFolderinobjSubFolders
nowpath=path+""+objSubFolder.name
Response.Writenowpath
setobjFiles=objSubFolder.Files
foreachobjFileinobjFiles
Response.Write"<br>---"
Response.WriteobjFile.name
next
Response.Write"<p>"
bianli(nowpath)递回
next
setobjFolder=nothing
setobjSubFolders=nothing
setfso=nothing
endfunction
%>
<%
bianli("d:")遍历d:盘
%>
asp是基于web的一种编程技术,可以说是cgi的一种。它可以完成以往cgi程序的所有功能,如计数器、留言簿、公告板、聊天室等等。 |
|