Programming Reference Manual
 
Syntax
 
object.Cookies
 
Description
Body of a request or response.
 
Part
Description
object
Evaluates to a ParentRequest object or ParentResponse Object
 

Data Type

 

Remarks

Read-only. When part of a Request Object, this property specifies the body of the request sent by the client. Generally, only PUT and POST requests contain data in this property.
When part of a Response Object, this property contains the body of the response that is to be sent back to the client. For GET requests, this property generally contains the requested file, or it contains an error message if the file is not found. For PUT and POST requests, this property contains a resulting HMTL page from the request. For HEAD requests, no Body is returned to the client.
 
See Also