Returns a string with any buffered output from the specified response object.
Syntax
toString( response )
response.toString( )
Parameters
response
|
the response object to use.
|
Returns
string
|
containing any output in the output buffer.
|
Notes
This method is only accessible by ss and by iScript Servlet.
This method can only be used if output is being buffered. An exception will occur if this method is used and output is not being buffered.
Example
sbuffer = Response( ).toString( )
|