Function CSPResponse::Flush()
Description:
Sends any buffered data to the client.
 |
Prototype:
bool Flush();
Arguments:
No arguments (void).
Return value:
If successful, it returns true. Otherwise it returns false.
Remarks:
This function has no effect if the member variable Buffer is set to false.
Examples:
Response.Buffer = true; Response.Write( "Hello!" ); Response.Flush();
See also:
member variable Buffer
|
|