使用ASP讀出文字檔並顯示

來源:互聯網
上載者:User

使用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>

 這樣就可以將文字檔讀出並顯示了。



相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.