Contains cookie values corresponding to the Request object received from the browser or the Response object sent to the browser.
Properties that are applicable only for the Response objects are:
Sets or returns the domain to which the cookie sends the response.
Object.Domain = DomainName As String
String.
DomainName is an optional parameter that sets the name of the domain.
Read/write.
This property is applicable only for Response objects.
Sets or returns the expiry date the cookie expires.
object.Expires = DateValue As Date
Date.
DateValue is an optional parameter that sets the expiry date of the cookie.
Read/write.
This property is applicable only for the Response objects.
Sets or returns the name of the Cookie object.
Object.Name = NameValue As String
String.
NameValue is an optional parameter that sets the name of the cookie object.
Read/write.
Sets or returns the path through which the cookie sends the response to the domain.
Object.Path [PathName As String]
String.
Read/write.
This property is a Response object only.
Specifies whether the Cookie object is secure.
object.Secure = SecureState As String
Boolean. Returns TRUE if the specified Cookie object is secure else returns FALSE.
Read.
SecureState Sets the cookie to be secured or insecure. By default this property is set to FALSE.
Sets or returns the value of a Cookie object.
object.Value = CookieValue As String
String.
Read/write.
CookieValue is an optional parameter that specifies the value to assign to the Cookie object.