Programming Reference Manual
 
Syntax
 
object.Header
 
Description
Collection of header fields associated with a request or response.
 
Part
Description
object
Evaluates to a ParentRequest object or ParentResponse Object
 

Data Type

Remarks

Read-only.
The Body property allows you to alter the body of the transaction. When part of a Request Object, this property represents the header sent by the client. When part of a Response Object, this property specifies the header to send to the client. Refer to the Default Response Header topic for information on default values that are automatically generated by the WebServer control.
Do not add the status of the HTTP request to the header of the response. Instead, use the Status property and the StatusText property to specify the status of the request.
If an httpSetCookie header is added to this collection, a corresponding Cookie Object in the Cookies property is added (possibly replacing an existing object in the collection).
 
See Also