ASP WriteLine ·½·¨
¶¨ÒåºÍÓ÷¨
WriteLine ·½·¨Ïò TextStream ÎļþдÈëÒ»¶ÎÖ¸¶¨µÄÎı¾ÒÔ¼°Ò»¸öÐÂÐÐ×Ö·û¡£
Óï·¨£º
TextStreamObject.WriteLine(text)
²ÎÊý | ÃèÊö |
---|---|
text | ¿ÉÑ¡µÄ¡£ÐèҪдÈëÎļþµÄÎı¾¡£Èç¹ûÄú²»¹æ¶¨´Ë²ÎÊý£¬ÄÇôһ¸öÐÂÐÐ×Ö·û»á±»Ð´ÈëÎļþ¡£ |
ʵÀý
<%
dim fs,f
set fs=Server.CreateObject("Scripting.FileSystemObject")
set f=fs.CreateTextFile("c:\test.txt",true)
f.WriteLine("Hello World!")
f.WriteLine("How are you today?")
f.WriteLine("Goodbye!")
f.close
set f=nothing
set fs=nothing
%>
ÔÚÖ´ÐÐÉÏÃæµÄ´úÂëºó£¬Îļþ test.txt ÊÇÕâÑùµÄ£º
Hello World! How are you today? Goodbye!