Cita:
Iniciado por dragerk <%
Set fs = Server.CreateObject("Scripting.FileSystemObject")
Set lista_archivos = fs.GetFolder(Server.MapPath("./sa"))
'Mostramos los archivos...
For each filefound in lista_archivos.files
Response.Write filefound.Name & "<BR>"
Next
%>
Hola si te entendio bien quieres que tenga un link, seria asi
<%
Set fs = Server.CreateObject("Scripting.FileSystemObject")
Set lista_archivos = fs.GetFolder(Server.MapPath("./sa"))
'Mostramos los archivos...
ruta=Server.MapPath("./sa") & "/"
For each filefound in lista_archivos.files
Response.Write ("<a href='" & ruta & filefound.Name & "' target='_blank'>"& filefound.Name &"</a><BR>"
Next
%>
Espero haberte entendido.