30
CFML Language Reference
CFCOOKIE
Defines cookie variables, including expiration and security options.
Syntax
<CFCOOKIE NAME="cookie_name"
VALUE="text"
EXPIRES="period"
SECURE="Yes/No"
PATH="urls"
DOMAIN=".domain">
NAME
Required. The name of the cookie variable.
VALUE
Optional. The value assigned to the cookie variable.
EXPIRES
Optional. Schedules the expiration of a cookie variable. Can be specified as a date
(as in, 10/09/97), number of days (as in, 10, 100), NOW, or NEVER. Using NOW
effectively deletes the cookie from the client’s browser.
SECURE
Optional. Indicates the variable has to transmit securely. If the browser does not
support Secure Socket Layer (SSL) security, the cookie is not sent.
PATH
Optional. Specifies the subset of URLs within the specified domain to which this
cookie applies:
PATH="/services/login"
Separate multiple entries with a semicolon ( ; ).
DOMAIN
Specifies the domain for which the cookie is valid and to which the cookie content
can be sent. An explicitly specified domain must always start with a dot. This can
be a subdomain, in which case the valid domains will be any domain names
ending in this string.
For domain names ending in country codes (such as
.jp
,
.us
), the subdomain
specification must contain at least three periods, for example,
.mongo.stateu.us
.
In the case of special top level domains, only two periods are needed, as in
.allaire.com
.
When specifying a PATH value, you must include a valid DOMAIN.
Separate multiple entries with a semicolon ( ; ).
Usage
Cookies written with CFCOOKIE do not get written to the
cookies.txt
file until the
browser session ends. Until the browser is closed, the cookie resides in memory. If you
Summary of Contents for COLDFUSION 4.5-CFML LANGUAGE
Page 1: ...Allaire Corporation CFML Language Reference ColdFusion 4 5...
Page 207: ...Chapter 1 ColdFusion Tags 183 CFCATCH CFTRY BODY HTML...
Page 224: ...200 CFMLLanguageReference CFOUTPUT P Text within CFOUTPUT is always shown CFOUTPUT BODY HTML...
Page 336: ...312 CFMLLanguageReference CFIF BODY HTML...
Page 404: ...380 CFMLLanguageReference DE It is morning CFOUTPUT P BODY HTML...
Page 413: ...Chapter 2 ColdFusion Functions 389 Customer BalanceDue BR CFOUTPUT CFIF BODY HTML...
Page 483: ...Chapter 2 ColdFusion Functions 459 CFOUTPUT CFLOOP BODY HTML...
Page 584: ...560 CFMLLanguageReference...
Page 594: ...570 CFMLLanguageReference...