| |
pedx
Posts: 16
Score: 0
Joined: 5/22/2001
From: USA
Status: offline
|
ylapidot, Test this code on your server <html><head> <title>fileobjects.asp</title> </head><body> <% mypath="/learn/test" Set filesystem = CreateObject("Scripting.FileSystemObject") Set folder = filesystem.GetFolder(server.mappath(mypath)) Set filecollection = folder.Files For Each file in filecollection response.write file.name & "<br>" Next set filesystem=nothing set folder=nothing set filecollection=nothing %> </body></html>
|
|