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

ASP الطريقة WriteBlankLines


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

طريقة WriteBlankLines يكتب عدد محدد من الأحرف خط جديد إلى ملف TextStream.

بناء الجملة

TextStreamObject.WriteBlankLines(numlines)

معامل وصف
numlines مطلوب. عدد الأحرف خط جديد إلى الكتابة إلى ملف

مثال

<%
dim fs,f
set fs=Server.CreateObject("Scripting.FileSystemObject")
set f=fs.CreateTextFile("c:\test.txt",true)
f.WriteLine("Hello World!")
f.WriteBlankLines(2)
f.WriteLine("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 المرجعي