asp编写的仿Explorer资源管理器
前几天就写好了,因为数据库的问题一直没有发,现在数据库改好了,发上来给大家看看
因为本机为win2003,安装了DNS,为了调试方便,我为每个case配置一个单独的域名,e是我自定义的一个域名。
因为没有找到合适的高亮程序,WP-Syntax 一直不能苯模板很好的兼容,所以先不发代码。
代码下载:http://miaoqiyuan.cn/products/asp-exolorer.rar
实际本程序没有什么高明的地方,无非就是FSO的基本属性,唯一值得说的就是文件遍历,见list.asp
call List(fpo,”")
Function List(Path,Start)
on error resume next
For Each Child in Path.SubFolders
Response.write “<br />”&Start&”|-<a href=./Path.asp?Path=”&Replace(Child.Path,” “,”[kong]“)&” target=Path>”&Child.Name&”</a>["&Child.Size&"B]”
Call List(Child,Start&”| ”)
Next
End Function
