
26/04/2003, 11:39
|
 | | | Fecha de Ingreso: febrero-2002 Ubicación: España
Mensajes: 2.364
Antigüedad: 23 años, 3 meses Puntos: 1 | |
<%
'Ficheros de texto con FSO
Set fso = CreateObject("Scripting.FileSystemObject")
Set texto = fso.OpenTextFile(Server.Mappath("texto.txt"),1,tru e,0)
contenidoArchivo = texto.readall
response.write(contenidoarchivo)
texto.Close
Set texto = Nothing
Set fso = Nothing
' Esto almacena el contenido del fichero en una variable
' Despues insertala en la base de datos.
%> |