02-21-05 12:45 PM
Hi!
I have this strange issue...
My ASP page needs to list the content of specific Netapp folder; the
code is very simple:
set fso = createobject("scripting.filesystemobject")
set folder = fso.GetFolder("\\io\Projekte")
for each fldr in folder.subfolders
wscript.echo "<li>" & fldr.name
next
set fso = nothing
If I execute the code on w2k server everything works fine. If I
execute the code as a WSH/VBS script everything works fine, even on
the windows 2003 server.
But - when I execute the code as ASP code running on windows 2003
server I only get some folders listed. I've checked the permissions
and everything seems to be OK and all folders have same permissions
and there is nothing that distincts folder being shown from one
ermaining unvisible. Kerberos authentication is the only thing that
slips my mind, but I'm rather stuck with this one.
Any ideas?
TIA,
Ammar
[ Post a follow-up to this message ]
|