%
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", "中國(guó)水利水電出版社(www.waterpub.com.cn)——全國(guó)優(yōu)秀出版社", True
WriteToFile "C:\intels\Test2.txt", "中國(guó)水利水電出版社(www.waterpub.com.cn)——全國(guó)優(yōu)秀出版社", false
WriteToFile "C:\intels\Test1.txt", chr(13) chr(10) "隨風(fēng)起舞(www.intels.net)——時(shí)尚咨詢的個(gè)人網(wǎng)站", true
WriteToFile "C:\intels\Test2.txt", chr(13) chr(10) "隨風(fēng)起舞(www.intels.net)——時(shí)尚咨詢的個(gè)人網(wǎng)站", false
'Test1.txt contains:
' 中國(guó)水利水電出版社(www.waterpub.com.cn)——全國(guó)優(yōu)秀出版社
' 隨風(fēng)起舞(www.intels.net)——時(shí)尚咨詢的個(gè)人網(wǎng)站
'Test2.text contains:
' 隨風(fēng)起舞(www.intels.net)——時(shí)尚咨詢的個(gè)人網(wǎng)站
%>
Write to File test is complete
/body>/html>
標(biāo)簽:襄陽(yáng) 邯鄲 柳州 中山 雞西 威海 遵義 朔州
巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《如何做一個(gè)文本書寫器?》,本文關(guān)鍵詞 如何,做,一個(gè),文本,書寫器,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。上一篇:如何顯示一個(gè)文本文件?