欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

如何显示一个文本文件?

程序员文章站 2023-01-25 16:55:04
 write(string)    writeline(string)    writeblankli...

 writestring

    writelinestring

    writeblanklineslines

 

    html

    head

    http-equiv="content-type" content="text/html;

    charset=gb2312"

    title〉春风精彩之文本文件显示〈/title

    /head

 

   〈body

    <% language = vbscript %>

    <%

const forreading = 1, forwriting = 2, forappending = 3

' 参数为可选,决定输入/输出模式:①forreading=1只读;②forwriting=2 可读写;③forappending=3追加.

const tristateusedefault = -2, tristatetrue = -1, tristatefalse = 0

  ' 参数为可选,指出以何种格式打开文件:①忽略此参数,以 ascii格式打开文件;②tristateusedefault=-2 以系统默认格式打开文件;③tristatetrue=-1 unicode 格式打开文件;④tristatefalse=0 ascii 格式打开文件,当然我们也可用opentextfile方法打开文件.

      

    dim filename

    filename = "test.txt"

      ' 缺省路径c:\win.

 

    set fs = createobject("scripting.filesystemobject")

    set f = fs.getfile(filename)

    set readf = f.openastextstream(forreading,tristatefalse)

 

    s = readf.readline

    do while readf.atendofline <> true

        s = readf.readline

        response.write s & ""

            ' 逐行读文件并写屏.

    loop

    readf.close

    %>

    </body></html>