| Buffer |
A boolean value indicating
whether page output is buffered or not. If the page's Response.Buffer
property is set to true then the output from the page will not be
sent to the client until all the script in that page is processed. Note
that in IIS 5, Response.Buffer is by default set to true. So if
you want to turn off buffering of your page's output then you will have
to set Response.Buffer to false. |
| CacheControl |
A string specifying that the
output from the ASP should be cached or not. If you want proxy server to
cache the output of your ASP then set this property to Public or
if you don't want to enable caching of your ASP then set it to Private. |
| Charset |
A string which appends the
name of character set to be used to HTTP-content-type header. |
| ContentType |
A string which specifies the
HTTP content type for the response. If Response.ContentType is
not specified then by default MIME-type "text/html" is used. |
| Expires |
An integer specifying the
duration of time in minutes after which the page expires in the client
browser cache. |
| ExpiresAbsolute |
Date / time after which the
page cached in the client browser expires and is no longer valid e.g.
Response.ExpiresAbsolute = #March 31, 2001 12:00:00# |
| IsClientConnected |
A boolean value indicating
whether the client is still connected to this particular page. If this
property returns false then the page's script processing can be
stopped by using Response.End method. |
| Pics |
A string which creates PICS
header and then adds it to the HTTP headers. It indicates PICS content
rating e.g. violence, sex etc. |
| Status |
A string which specifies the
value of status line of the server. It is included in HTTP headers of
the response. This string should contain both three digit code
and a brief explanation for it e.g. "404 File Not Found". |