HTTP_COOKIES

The HTTP_COOKIES element contains child elements that define persistent session variables or constants.

Child elements

The HTTP_COOKIES element may contain the following child elements:
  1. Zero or more HTTP_COOKIE elements.

Syntax

<HTTP_COOKIES>
  <HTTP_COOKIE ...>...</HTTP_COOKIE>
  [...]
</HTTP_COOKIES>

Example

<!-- secure persistent cookie with default variable value and constant value -->
<HTTP_COOKIES>
  <HTTP_COOKIE Id="cookie3" Expires="Wdy, DD-Mon-YYYY HH:MM:SS GMT" 
   Domain="www.domain.com" Secure="TRUE" HttpOnly="TRUE">
    <VARIABLE Id="var7" />
    <VARIABLE Id="var8">Initial value</VARIABLE>
    <CONSTANT Id="constant1">A value</CONSTANT>
  </HTTP_COOKIE>
</HTTP_COOKIES>

For more information on HTTP cookies, see the Session Variables and Cookies page.

Parent elements

This element is a child of one of the OUTPUT (under APPLICATION) element.