LINE9的目录浏览源程序 复制代码 代码如下:<%' make sure you have the 6 dir_*.gif files!' yes, you can copy ours if ya want too.. :)' http://line9.com/img/dir_dir.gif .. etc.Function ShowImageForType(strName)strTemp = strNameIf strTemp <> "dir" ThenstrTemp = LCase(Right(strTemp, Len(strTemp) - InStrRev(strTemp, ".", -1, 1)))End IfSelect Case strTempCase "dir"strTemp = "dir"Case "asp"strTemp = "asp"Case "htm", "html"strTemp = "htm"Case "gif", "jpg", "jpeg", "png", "tif", "cpt", "bmp", "pcx", "tga", "psd", "eps"strTemp = "img"Case "txt", "text", "dat", "bat", "sys"strTemp = "txt"Case ElsestrTemp = "misc"End SelectstrTemp = ""ShowImageForType = strTempEnd FunctionTek9 = Request.QueryString("Tek9")If Tek9 = "" Then strPath = "myDirectory/" Else strPath = Tek9Set objFSO = Server.CreateObject("Scripting.FileSystemObject")Set objFolder = objFSO.GetFolder(Server.MapPath(strPath))Response.Write"View our files and folders here:
"&_""For Each objItem In objFolder.SubFoldersIf InStr(1, objItem, "_vti", 1) = 0 ThenResponse.Write""End IfNextFor Each objItem In objFolder.FilesResponse.Write""&_""NextSet objItem = NothingSet objFolder = NothingSet objFSO = NothingResponse.Write"
"&_" "&strPath&"
"&ShowImageForType("dir")&" "&_""&_""&objItem.Name&"
"&_" "&ShowImageForType(objItem.Name)&" "&_""&objItem.Name&""&objItem.Size&"
"%>