<كاملة كائن 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 المرجعي