La propiedad de columna ASP se utiliza para devolver el número de columna de una posición de carácter actual en un archivo TextStream. Es una propiedad de sólo lectura.
Nota: Esta propiedad es 1 después de escribir un carácter de nueva línea (incluso antes de escribir cualquier otro carácter).
Sintaxis:
TextStreamObject.Column
Código de ejemplo: El siguiente código ilustra la propiedad de la columna ASP
ASP
<% dim gfg,f,t,x,y set gfg=Server.CreateObject("Scripting.FileSystemObject") set f=gfg.CreateTextFile("d:\GFG.txt") // creating a File f.write("Hello GeeksForGeeks") f.close // opening a file set t=gfg.OpenTextFile("d:\GFG.txt",1,false) do while t.AtEndOfStream<>true x=t.Read(1) y=t.Column-1 loop t.close Response.Write("The last character in the text file is: " & x) Response.Write("<br> at character position: " & y) %>
Producción:
The last character in the text file is: s at character position: 19
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA