wwPageResponse::AppendHeader
Adds an HTTP Header to the current response.
Essentially the same as Response.Headers.Add(), but this method is consistent with ASP.NET and shows up in IntelliSense.
o.AppendHeader(lcHeaderKey,lcHeaderValue)
Parameters
lcHeaderKey
The header to add
lcHeaderValue
The value for the header
Remarks
Example
*** Refresh the page in 2 seconds
Response.AppendHeader("Refresh","2; url=/wconnect/weblog/default.blog")
*** Add a custom header value
Response.AppendHeader("Custom","MyCustomValue")
