'写文件
Sub WriteToTextFile (FileUrl,byval Str,CharSet)
set fso = Server.CreateObject("Scripting.FileSystemObject")
set file = fso.OpenTextFile(Server.MapPath(FileUrl),2,true) '1读取 2写入 8追加
file.write Str
file.close
set file = nothing
set fso = nothing
End Sub

相关文章:

  • 2022-01-23
  • 2021-12-10
  • 2021-07-15
  • 2021-11-26
  • 2022-01-29
  • 2022-12-23
  • 2022-12-23
  • 2021-11-02
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-10-13
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案