Ver Mensaje Individual
  #5 (permalink)  
Antiguo 09/10/2003, 06:11
Galx
 
Fecha de Ingreso: septiembre-2003
Ubicación: Nerja
Mensajes: 29
Antigüedad: 21 años, 7 meses
Puntos: 0
Prueba esto para gestionar errores:
<%
on error resume next
Set fso = CreateObject("Scripting.FileSystemObject")
Set abretxt = fso.OpenTextFile(server.MapPath("archivo.txt") )

IF err <> 0 THEN
response.write "Ha ocurrido un error"
ELSE
response.write"Todo va bien"
END IF

abretxt.close
Set abretxt = nothing
Set fso = nothing
%>