wwPageResponse::Headers

A collection of individual HTTP headers that are to be added to the request header. The Headers of the Response can be set at any time during the request as they are cached and written at the end of the request.

The collection contains a pair of name and value pairs that can be accessed like this:

Response.Headers.Add("Expires","-1")
Response.Headers.Add("Custom","CustomValue")

Response.Headers.Clear()  && Remove all headers

You can also use the Response.AppendHeader() method which has the same functionality.

Default Value

Initial value: null

Remarks

More info on HTTP Headers

See also:

Class wwPageResponse | wwPageResponse::AppendHeader

© West Wind Technologies, 1996-2022 • Updated: 08/27/06
Comment or report problem with topic