读取文本文件的所有行

代码:

<!DOCTYPE html>

<html>

<body>

<p>This is all the lines in the text file:</p>

 

<%

Set fs=Server.CreateObject("Scripting.FileSystemObject")

Set f=fs.OpenTextFile(Server.MapPath("testread.txt"), 1)

 

do while f.AtEndOfStream = false

Response.Write(f.ReadLine)

Response.Write("<br>")

loop

 

f.Close

Set f=Nothing

Set fs=Nothing

%>

 

</body>

</html>

结果:

This is all the lines in the text file:

Hello!
How are you today?

相关文章