摘要:
1 2 3 4 5 6 7 111 8 222 9 10 11 12 13 阅读全文
摘要:
'写文件 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 ... 阅读全文