App下载

demo_skipline 在线工具

demo_skipline 在线工具

<html>
<body>
<p>The first line in the text file is skipped:</p>

<FONT COLOR=#ff0000><%
Set fs=Server.CreateObject("Scripting.FileSystemObject")

Set f=fs.OpenTextFile(Server.MapPath("testread.txt"), 1)
f.SkipLine
Response.Write(f.ReadAll)
f.Close

Set f=Nothing
Set fs=Nothing
%></FONT>

</body>
</html>
运行结果