Help > Web Development > Reference > Scripting Objects > Response Object

Response Object

The response object represents the content and headers that are returned to the client for the current HTTP request.

Properties
Buffer Indicates if the page's output is buffered..
ContentType Specifies the HTTP content type of the response.
Expires Specifies how long the page can be cached in the client's browser.
ExpiresAbsolute Specifies the date/time that the page will expire from the client's browser cache.
Cookies Collection Contains the collection of cookies to be sent to the client.
Status Specifies the value of the status line to be sent to the client.
CharSet Indicates the character set that is to be appended to the content type; indicates how to render characters.
CacheControl Specifies the cache settings on how to handle this page.
CodePage Sets the code page for the current result.  The code page specifies how the server should encode characters.

Methods
AddHeader(name, value) Sets the specified header name to value.
BinaryWrite(value) Writes the data stored in value to the response without character encoding.
Clear Clears any buffered output.
End Stop processing the current page and return the output.
Flush Flush the current buffered output to the client.
Redirect Sends a redirect message to the clients browser instructing it to go to another URL.
IsClientConnected Indicates if the client is still connected.

Remarks