ASP Write ·½·¨
¶¨ÒåºÍÓ÷¨
Write ·½·¨Ïò TextStream ÎļþдÈëÖ¸¶¨µÄÎı¾¡£
×¢ÊÍ£º´Ë·½·¨Ïò 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 %>
ÔÚÖ´ÐÐÉÏÃæµÄ´úÂëºó£¬Îļþ test.txt ÊÇÕâÑùµÄ£º
Hello World!How are you today?