您好,欢迎来到点滴吧! 手机版
点滴吧www.diandiba.com
记录点点滴滴,尽在点滴吧
  • 文章
  • 文章
  • 特效
  • 素材
  • 景点
您现在的位置:首页 > ASP教程 > 文章正文
一个ASP创建文本文件的函数
更新时间:2015/1/5 16:27:36   点击:1997次
<% 
'=============================================================
 '过程名:createdtextfile
 '作  用:创建文本文件
 '参  数:filename  ----文件名
 '        body  ----主要内容
 '=============================================================
 function createdtextfile(byval filename,byval body)
  on error resume next
  dim f,sname
  filename = replace(replace(filename, "/", "\"), "\\", "\")
  if instr(filename, ":") = 0 then filename = server.mappath(filename)
  sname=mid(filename,instrrev(filename,"\")+1,len(filename))
  if instr(sname,".")=0 then filename = filename &"\index.html"
  if mainsetting(7)="0" then
   set f = fso.createtextfile(filename,true, false)
   f.write body
   f.close
   set f = nothing
  else
   if mainsetting(7)="2" then
    newaspstream.charset="utf-8"
   elseif mainsetting(7)="3" then
    newaspstream.charset="big5"
   else
    newaspstream.charset="gb2312"
   end if
   newaspstream.type = 2'设置内容为文本
   newaspstream.mode = 3'设置为可读可写
   newaspstream.open()
   newaspstream.writetext(body)
   newaspstream.savetofile filename,2
   newaspstream.flush
   newaspstream.close()
  end if
  if err.number <> 0 then err.clear
 end function
%>


相关文章
导航分类
热门文章
关于我们| 联系我们| 免责声明| 网站地图|
CopyRight 2012-2015 www.diandiba.com - 点滴吧 All Rights Reserved
滇ICP备09005765号-2