使用ASP讀出文字檔並顯示
讀取一個文字檔並寫出 Sun Aug 2 06:34:07 1998
(注:textStream有關寫的METHOD
Write(STRING)
WriteLine(STRING)
WriteBlankLines(LINES)
)
這是一個完整的程式
〈 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>
這樣就可以將文字檔讀出並顯示了。