El método ASP ReadLine se utiliza para leer una línea de un archivo de texto. No incluye caracteres de nueva línea. Es un método predefinido del objeto TextStream que devuelve una string de resultado.
Sintaxis:
TextStreamObject.ReadLine
Ejemplo: El siguiente código ilustra el método ASP ReadLine.
ASP
<% dim fs,f,t,x set fs=Server.CreateObject("Scripting.FileSystemObject") set f=fs.CreateTextFile("d:\GFG.txt") f.writeline("GeeksForGeeks") f.writeline("Google Chrome") f.writeline("Mozilla Firefox") f.close set t=fs.OpenTextFile("d:\GFG.txt",1,false) x=t.ReadLine t.close Response.Write("The first line in the file " & x) %>
Producción:
The first line in the file is GeeksForGeeks
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA