Hi all,
I'm trying the gather data from a folder on a drive that is networked to a webserver. Howerver I keep getting this error -
Microsoft VBScript runtime (0x800A004C)
Path not found
The path name is definetely correct, if I 'run' this path name it brings me directly to the folder. However it will not work through asp. Below is my code:
Any ideas??HTML Code:<% Dim fso, f, f1, fc, s Set fso = CreateObject("Scripting.FileSystemObject") Set f = fso.GetFolder("\\netfp6\folder$\test") Set fc = f.Files For Each f1 in fc s = s & f1.name s = s & "<BR>" Next ShowFileList = s Response.Write s %>




Bookmarks