Function CSPResponse::Write()
Description:
Writes text data to the client.
 |
Prototype:
bool Write(const CSPString& strText);
Arguments:
- const CSPString& strText [IN]
Output text data.
Return value:
If successful, it returns true. Otherwise it returns false.
Remarks:
If member variable Buffer is set to true, outgoing data is buffered. If Buffer is set to false, data is immediately sent to the client.
Examples:
Response.Write( "Hello!" );
See also:
member functions WideWrite(), BinaryWrite(), Flush() member variable Buffer
|
|