<完整文本流对象参考
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?
<完整文本流对象参考