<!DOCTYPE html>
<html>
<body>
<%
将 fs=Server.CreateObject(“Scripting.FileSystemObject”)
将 f=fs.OpenTextFile(Server.MapPath(“testread.txt”), 1)
Response.Write(f.Read(2))
Response.Write(“<p>光标现在位于文本文件位置 “ & f.Column & “。</p>”)。
f.Close
将 f=Nothing
将 fs=Nothing
%>
</body>
</html>