Met Write
# ASP Write Method
* * Complete TextStream Object Reference Manual](#)
* * *
The Write method writes a specified string to a TextStream file.
**Note:** This method writes the text to the TextStream file without spaces or line breaks between each string.
### Syntax
TextStreamObject.Write(text)
| Parameter | Description |
| --- | --- |
| text | Required. The text to be written to the file. |
### Example
After executing the above code, the file test.txt will look like this:
Hello World!How are you today?
* * Complete TextStream Object Reference Manual](#)
YouTip