站长资源网络编程

如何做一个文本书写器?

整理:jimmy2024/10/26浏览2
简介<%function WriteToFile(FileName, Contents, Append)on error resume nextif Append = true then iMode = 8else iMode = 2end ifset oFs = server.createobj

<%
function WriteToFile(FileName, Contents, Append)
on error resume next

if Append = true then
  iMode = 8
else
  iMode = 2
end if
set oFs = server.createobject("Scripting.FileSystemObject")
set oTextFile = oFs.OpenTextFile(FileName, iMode, True)
oTextFile.Write Contents
oTextFile.Close
set oTextFile = nothing
set oFS = nothing

end function

%>

<html>
<body>

<%
WriteToFile "C:\intels\Test1.txt", "中国水利水电出版社(www.waterpub.com.cn)——全国优秀出版社", True
WriteToFile "C:\intels\Test2.txt", "中国水利水电出版社(www.waterpub.com.cn)——全国优秀出版社", false
WriteToFile "C:\intels\Test1.txt", chr(13) & chr(10) & "随风起舞(www.intels.net)——时尚咨询的个人网站", true
WriteToFile "C:\intels\Test2.txt", chr(13) & chr(10) & "随风起舞(www.intels.net)——时尚咨询的个人网站", false

'Test1.txt contains:
' 中国水利水电出版社(www.waterpub.com.cn)——全国优秀出版社
' 随风起舞(www.intels.net)——时尚咨询的个人网站

'Test2.text contains:
' 随风起舞(www.intels.net)——时尚咨询的个人网站
%>
Write to File test is complete
</body></html>