<완전한있는 TextStream 개체 참조
쓰기 방법은있는 TextStream 파일에 지정된 텍스트를 씁니다.
Note: 각 문자열 사이에 공백이나 줄 바꿈과 함께있는 TextStream 파일에이 방법을 쓰기 텍스트를.
통사론
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?
<완전한있는 TextStream 개체 참조