案例:ASP/ADO案例     状态:不可编辑再运行    进入竖版
 运行结果 
x
 
1
2
<html>
3
<body>
4
<p>文本文件中的前 4 个字符被略掉了:</p>
5
6
<%
7
Set fs=Server.CreateObject("Scripting.FileSystemObject")
8
9
Set f=fs.OpenTextFile(Server.MapPath("testread.txt"), 1)
10
f.Skip(4)
11
Response.Write(f.ReadAll)
12
f.Close
13
14
Set f=Nothing
15
Set fs=Nothing
16
%>
17
18
</body>
19
</html>
20