최신 웹 개발 튜토리얼
 

ASP Line Property


<완전한있는 TextStream 개체 참조

라인 속성은있는 TextStream 파일에서 현재 행 번호를 반환 (starting at 1) .

통사론

TextStreamObject.Line

<%
dim fs,f,t
set fs=Server.CreateObject("Scripting.FileSystemObject")
set f=fs.CreateTextFile("c:\test.txt",true)
f.WriteLine("Hello World!")
f.WriteLine("How are you today?")
f.WriteLine("Goodbye!")
f.close

Set t=fs.OpenTextFile("c:\test.txt",1)
do while t.AtEndOfStream=false
  Response.Write("Line " & t.Line & ": ")
  Response.Write(t.ReadLine)
  Response.Write("<br>")
loop
t.Close
%>

Output:

Line 1: Hello World!
Line 2: How are you today?
Line 3: Goodbye!

<완전한있는 TextStream 개체 참조