如何显示一个文本文件?_编程10000问

 Write(StrING)

    WriteLine(StrING)

    WriteBlankLines(LINES)

 <?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />

    〈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>

时间: 2024-10-29 02:51:14

如何显示一个文本文件?_编程10000问的相关文章

如何按时间显示最新标志_编程10000问

<%mytime=rs("time") '数据库中保存时间nowtime=now() '当前时间if datediff("d",mytime,nowtime)<1 then '比较当前时间和数据库中时间,如相差小于1,即显示图片new.gif%><img src="images/new.gif"><%end if%>

如何检测用户第一次访问我的网站并显示友好信息?_编程10000问

< %@ LANGUAGE="VBscript" % >< % RequestName = Request.Form("Name")RequestLeaveMeAlone = Request.Form("LeaveMeAlone")If RequestName <  >"" or RequestLeaveMeAlone <  >"" then<?xml:nam

ASP问答集_编程10000问

问:为什么我的记录集的RecordCount值总是返回-1? 答:你应当使用这种模式来打开存取数据库的记录集:   rec.open strSQL,conn,1,1   其中的strSQL是操作数据库的SQL语句;conn是联接数据库的Connection 变量. 问:我在ASP脚本中写了很多的注释,这会不会影响服务器处理ASP文件的速度? 答:经国外技术人员测试,带有过多注释的ASP文件整体性能仅仅会下降0.1%,也就是说基本上不会影响到服务器的性能下降的. 问:我需不需要在每个ASP文件的开

如何对文件进行操作?_编程10000问

<%@ LANGUAGE="VBScript" %> <% 'Set file i/o constants.  Const ForReading  = 1  Const ForWriting  = 2  Const ForAppending = 8  filename = "test.txt"  path = Server.MapPath("data") & "\" & filename<

如何让一个方框栏内的文字滚动显示?_编程10000问

如何让一个方框栏内的文字滚动显示?<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /> <!-- #include file="news.inc" --> <% dim NewsStr(1,5) NewsStr(0,0)="下载本栏链接" NewsStr(1,0)="http://www.intels.net

如何制作一个文本文件编辑器?_编程10000问

newdoc.asp<%@ Language=VBScript %><script id=DebugDirectives runat=server language=javascript>//Set these to true to enable debugging or tracing@set @debug=false@set @trace=false</script><html><head><META name=VI60_default

如何制作一个弹出式的调查窗口?_编程10000问

    <%    Dim bSurvey  <?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /> ' 是否显示调查表    const bID="1"  ' 调查表的id     bSurvey=false    ' 检查调查表是否已经显示过.    if instr(request.Cookies("s"),":&q

如何随机显示图片计数器?_编程10000问

count.asp< html >< head >< meta http-equiv="Content-Type"content="text/html; charset=gb2312" ><title>随风起舞之千变计数器</title></head><body><p><%dim outcountfile=server.mappath("aspcount.

如何编写一个创建FTP站点的函数?_编程10000问

如何编写一个创建FTP站点的函数? Function ASTCreateFtpSite(IPAddress, RootDirectory, ServerComment, HostName, PortNum, Computer, Start,LogFileDirectory)    Dim MSFTPSVC, FtpServer, NewFtpServer, NewDir    Dim Bindings, BindingString, NewBindings, Index, SiteObj, bD