Please note, this is a STATIC archive of website www.w3schools.com from 05 May 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.
THE WORLD'S LARGEST WEB DEVELOPER SITE

ASP WriteBlankLines Method


❮ Complete TextStream Object Reference

The WriteBlankLines method writes a specified number of new-line characters to a TextStream file.

Syntax

TextStreamObject.WriteBlankLines(numlines)

Parameter Description
numlines Required. The number of new-line characters to write to the file

Example

<%
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?

❮ Complete TextStream Object Reference