当前位置:编程学习 > asp >>

如何做一个文本书写器?

答案:

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

上一个:如何获知并显示文件的大小?
下一个:如何实现无组件上传二进制文件?

CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,