Ver Mensaje Individual
  #5 (permalink)  
Antiguo 12/09/2004, 12:24
orharo2003
 
Fecha de Ingreso: abril-2004
Ubicación: México D.F.
Mensajes: 1.724
Antigüedad: 21 años
Puntos: 4
En Jscript :

fso = new ActiveXObject("Scripting.FileSystemObject");
f = fso.GetFolder(folderspec);
fc = new Enumerator(f.SubFolders);
for (;!fc.atEnd(); fc.moveNext()) // Adecualo a tus necesidades
{
response.write fc.item();

}

Así si puedes aplicar lo que te dije, lo hice y si página bien.