当前位置: 首页 > 网络学院 > 服务端脚本教程 > ASP > ASP SkipLine 方法

ASP
ASP 介绍
ASP Install
ASP 语法
ASP 变量
ASP Procedures
ASP Forms
ASP Cookies
ASP Session
ASP Application
ASP #include
ASP Global.asa
ASP Send e-mail
ASP Response
ASP Request
ASP Application
ASP Session
ASP Server
ASP Error
ASP FileSystem
ASP TextStream

ASP SkipLine 方法


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-03-04   浏览: 315 ::
收藏到网摘: n/a

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

登陆 | 还没注册?