• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    如何显示一个文本文件?

     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>

    上一篇:如何读取文本文件的内容?
    下一篇:如何做一个文本书写器?
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    如何显示一个文本文件? 如何,显示,一个,文本,文件,