<html>
<head>
<http-equiv="Content-Type" content="text/html; charset=gb2312">
<title></title>
</head>
<body>
<% LANGUAGE = VBScript % >
<%
Const ForReading = 1, ForWriting = 2, ForAppending = 8
Const TristateUseDefault = -2, TristateTrue = -1, TristateFalse = 0
Dim filename
filename = "test.txt" ’缺省相對路徑是c:winnt
Set fs = CreateObject("Scripting.FileSystemObject")
Set f = fs.GetFile(filename)
Set readf = f.OpenAsTextStream(ForReading,TristateFalse)
’第一個參數可選。輸入/輸出模式,是下列三個常數之一:
’ ForReading=1只讀、ForWriting=2 可讀寫或 ForAppending=3追加
’第二個參數也為可選。三個 Tristate 值之一,
’ 指出以何種格式打開文件。忽略此參數,則文件以 ASCII
’格式打開。 TristateUseDefault=-2 以系統默認格式打開文件、
’TristateTrue=-1 以 Unicode 格式打開文件或TristateFalse=0
’以 ASCII 格式打開文件。
’也可用OpenTextFile方法打開文件
s = readf.ReadLine
Do While readf.AtEndOfLine <> True
s = readf.ReadLine
Response.write s & "" ’逐行讀文件並寫出
Loop
readf.close
%>
</body>
</html>