
13/02/2002, 13:31
|
| | Fecha de Ingreso: febrero-2002
Mensajes: 66
Antigüedad: 23 años, 3 meses Puntos: 0 | |
SkipLine de VBScript Ya le quite el acento y ya no me marca error pero no me muentra nada en la pagina
<html>
<head>
<title>
abriendo archivo</title>
<body>
<%
Function SaltarLineaEnArchivo
Const ParaLectura = 1, ParaEscritura = 2
Dim fso, f
Set fso = CreateObject("Scripting.FileSystemObject" ;)
Set f = fso.OpenTextFile("c:\log\ex020117.log", ParaEscritura, True)
Set f = fso.OpenTextFile("c:\log\ex020117.log", ParaLectura)
f.SkipLine
SaltarLineaEnArchivo = f.ReadLine
End Function
%>
</body>
</html>
No se si tampoco no va f.write pero se la quite ayuda por favor gracias :) ;) :P :( |