还是fso问题
Set fso=Server.CreateObject("Scripting.FileSystemObject")Set tex=fso.OpenTextFile(Server.MapPath("2.txt"))
aspfso=tex.ReadLine
Response.Write aspfso
附:2.txt
1111 33333
2222 44444
3333 55555
........ .........
----------------------------------------------
运行上面的代码只能显示
1111 33333
为什么只能读第一行怎么让他把所有的行都读出来?