Link:http://output.to/sideway/default.asp?qno=130300037 Write / WriteBlankLines / WriteLine, ASP Server Component, TextStream Object TextStream ObjectOne key function of FileSystemObject Component is the manipulation of text file of the file system. TextStream Object facilitates sequential access to text file. TextStream.WriteTextStream.Write method is the method to write the specified string to the opened TextStream file corresponding to the instance of specified TextStream object. Syntax:TextStreamName.Write(string) Or in VBScript. Imply TextStreamName.Write(string) Or in JScript. Imply TextStreamName.Write(string) Parameters:TextStreamName The parameter "TextStreamName" is used to specify the name of the instance of the TextStream Object related to. string The parameter "string" is used to specify the character string to be written to the text stream file of the instance of the specified TextStream Object. Remarks:TextStreamName refers to a TextStream Object. When the instance of the TextStream object of the specified file is opened for reading only, no text can be written to the file. The specified string is just written to the file with no intervening spaces or characters between each string by the Write method. However, the WriteLine method write a newline character or a string that ends with a newline character. Examples:
TextStream.WriteBlankLinesTextStream.WriteBlankLines method is the method to write a specified number of newline characters to the opened TextStream file corresponding to the instance of specified TextStream object. Syntax:TextStreamName.WriteBlankLines(lines) Or in VBScript. Imply TextStreamName.WriteBlankLines(lines) Or in JScript. Imply TextStreamName.WriteBlankLines(lines) Parameters:TextStreamName The parameter "TextStreamName" is used to specify the name of the instance of the TextStream Object related to. lines The parameter "lines" is used to specify the number of newline characters to be written to the text stream file of the instance of the specified TextStream Object. Remarks:TextStreamName refers to a TextStream Object. Examples:
TextStream.WriteLineTextStream.WriteLine method is the method to write the specified string together with a newline character to the opened TextStream file corresponding to the instance of specified TextStream object. Syntax:TextStreamName.Write([string]) Or in VBScript. Imply TextStreamName.Write([string]) Or in JScript. Imply TextStreamName.Write([string]) Parameters:TextStreamName The parameter "TextStreamName" is used to specify the name of the instance of the TextStream Object related to. string The optional parameter "string" is used to specify the character string is ato be written to the text stream file of the instance of the specified TextStream Object. A newline character is added automatically. If the optional parameter "string" is omitted, only the newline character is written to the file. Remarks:TextStreamName refers to a TextStream Object. Examples:
|
Sideway BICK Blog 31/03 |