网络学院 w3pop社区 网络资源 IT新闻

w3pop.com :: 网络学院 :: ASP :: ASP SkipLine 方法

会员登陆

帐号

密码

回答

记住密码

忘记密码? 注册

ASP SkipLine 方法


作者:w3pop.com 翻译/整理:w3pop.com 发布:2007-04-28 浏览:1034 :: ::

The SkipLine method skips a line when reading a TextStream file.
ASP SkipLine的作用是跳过其中一行文本读取下面的文本。

Syntax
语法

TextStreamObject.SkipLine

Example
举例

<%
dim fs,f,t,x
set fs=Server.CreateObject("Scripting.FileSystemObject") 
set f=fs.CreateTextFile("c:test.txt")
f.writeline("Line 1")
f.writeline("Line 2")
f.writeline("Line 3")
f.close
set t=fs.OpenTextFile("c:test.txt",1,false)
t.SkipLine
x=t.ReadAll
t.close 
Response.Write("Output after skipping the first ")
Response.Write(" line in the file: " & x)
%>

Output:

Output after skipping the first line in the file: Line 2
Line 3


评论 (0) All