asp

位置:IT落伍者 >> asp >> 浏览文章

使用ASP读出文本文件并显示


发布日期:2019年09月23日
 
使用ASP读出文本文件并显示
(注:textStream有关写的METHOD

Write(STRING)

WriteLine(STRING)

WriteBlankLines(LINES)

这是一个完整的程序

〈 html 〉

〈 head 〉

〈 httpequiv=ContentType content=text/html; charset=gb

〈 title 〉〈 /title 〉

〈 /head 〉

〈 body 〉

< % LANGUAGE = VBScript % >

< %

Const ForReading = ForWriting = ForAppending =

Const TristateUseDefault = TristateTrue = TristateFalse =

Dim filename

filename = testtxt 缺省相对路径是c:winnt

Set fs = CreateObject(ScriptingFileSystemObject)

Set f = fsGetFile(filename)

Set readf = fOpenAsTextStream(ForReadingTristateFalse)

第一个参数可选输入/输出模式是下列三个常数之一

ForReading=只读ForWriting= 可读写或 ForAppending=追加

第二个参数也为可选三个 Tristate 值之一

指出以何种格式打开文件忽略此参数则文件以 ASCII

格式打开 TristateUseDefault= 以系统默认格式打开文件

TristateTrue= 以 Unicode 格式打开文件或TristateFalse=

以 ASCII 格式打开文件

也可用OpenTextFile方法打开文件

s = readfReadLine

Do While readfAtEndOfLine <> True

s = readfReadLine

Responsewrite s & 逐行读文件并写出

Loop

readfclose

% >

< /body>

< /html>

这样就可以将文本文件读出并显示了

上一篇:ASP讲座之四:ASP内置组件

下一篇:asp 利用Persits.jpeg组件生成图片