أحدث البرامج التعليمية وتطوير الشبكة
 

ASP طريقة للإشارة


<كاملة كائن TextStream المرجعي

والأسلوب للإشارة يكتب النص المحدد وحرف سطر جديد إلى ملف 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
%>

The file test.txt will look like this after executing the code above:

Hello World!
How are you today?
Goodbye!

<كاملة كائن TextStream المرجعي