Writes an output string to a document.
PSDocumentClass object
psDocument.Write( string )
Argument |
Description |
---|---|
string |
The output string |
None
At runtime, Write has the following behavior:
Application server |
Runtime behavior |
---|---|
ASP |
Calls the Write method of the Response object |
JSP |
Calls the print method on javax.servlet.jsp.JspWriter |
The following example writes the string “Hello World!” to the current document:
psDocument.Write("Hello World!");