当前位置: 首页 > 网络学院 > 服务端脚本教程 > ASP > ASP WriteBlankLines 方法
The WriteBlankLines method writes a specified number of new-line characters to a TextStream file.
ASP WriteBlankLines的作用是指定文本之间需要插入的行数。
TextStreamObject.WriteBlankLines(numlines) |
Parameter 参数 | Description 描述 |
---|---|
numlines | Required. The number of new-line characters to write to the file 必要参数。设定文本之间需要插入的行数 |
<% 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? |