ASP WriteBlankLines Method Last Updated : 03 Mar, 2021 Comments Improve Suggest changes Like Article Like Report The ASP WriteBlankLines Method is used to write a specified number of new-line characters to a Text File. It is an in-built method of the TextStream Object. Syntax: TextStreamObject.WriteBlankLines(numlines) Parameter Values: numchar: Required attribute. It contains a numeric value that specifies the number of new-line characters which you want to be written to the text file. Example Code: Below code illustrates the ASP WriteBlankLines Method. ASP <% dim fs,f set fs=Server.CreateObject("Scripting.FileSystemObject") set f=fs.CreateTextFile("d:\GFG.txt",true) f.WriteLine("Hello GeeksForGeeks") f.WriteBlankLines(2) f.WriteLine("A computer Science portal for Geeks") f.close set f=nothing set fs=nothing %> Output: Hello GeeksForGeeks A computer science portal for Geeks Comment More infoAdvertise with us Next Article ASP SkipLine Method M manaschhabra2 Follow Improve Article Tags : Websites & Apps ASP-Methods ASP-Basics Similar Reads ASP ReadLine Method The ASP ReadLine Method is used to read one line from a Text file. It does not include newline characters. It is a predefined method of the TextStream Object that returns a result string. Syntax: TextStreamObject.ReadLine Example: Below code illustrates the ASP ReadLine Method. ASP <% dim fs,f, 1 min read ASP SkipLine Method The ASP SkipLine Method is used to skip one line from a text file at the time of reading the file contents. It is a predefined method of the TextStream Object. Syntax: TextStreamObject.SkipLine Example: Below code illustrates the ASP SkipLine Method. ASP <% dim gfg,f,t,x set gfg=Server.CreateOb 1 min read C# | Graphics.DrawLine() Method | Set â 2 Graphics.DrawLine() Method is used to draw a line connecting the two points specified by the coordinate pairs. There are 4 methods in the overload list of this method as follows: DrawLine(Pen, PointF, PointF) Method DrawLine(Pen, Int32, Int32, Int32, Int32) Method DrawLine(Pen, Single, Single, Singl 3 min read C# | Graphics.DrawLine() Method | Set - 1 Graphics.DrawLine() Method is used to draw a line connecting the two points specified by the coordinate pairs. There are 4 methods in the overload list of this method as follows: DrawLine(Pen, PointF, PointF) Method DrawLine(Pen, Int32, Int32, Int32, Int32) Method DrawLine(Pen, Single, Single, Singl 4 min read BufferedWriter newLine() method in Java with Examples The newLine() method of BufferedWriter class in Java is used to separate the next line as a new line. It is used as a write separator in buffered writer stream. Syntax: public void newLine() throws IOException Parameters: This method does not accept any parameter. Return value: This method does not 2 min read Java Program to Print a New Line in String Java is the most powerful programming language, by which we can perform many tasks and Java is an industry preferable language. So it is filled with a huge amount of features. Here we are going to discuss one of the best features of Java, that is how to print a new line in a string using Java. Metho 3 min read Like