最新的Web開發教程
 

ASP Write方法


<完整文本流對象參考

Write方法寫入指定的文本到文本流文件。

Note:此方法寫入的文字與每個字符串之間沒有空格或換行符的文本流文件。

句法

TextStreamObject.Write(text)

參數 描述
text 需要。 文字寫入文件

<%
dim fs,f
set fs=Server.CreateObject("Scripting.FileSystemObject")
set f=fs.CreateTextFile("c:\test.txt",true)
f.write("Hello World!")
f.write("How are you today?")
f.close
set f=nothing
set fs=nothing
%>

The file test.txt will look like this after executing the code above:

Hello World!How are you today?

<完整文本流對象參考