90
CFML Language Reference
CFHEADER
CFHEADER generates custom HTTP response headers to return to the client.
Syntax
<CFHEADER
NAME="header_name"
VALUE="header_value">
or
<CFHEADER
STATUSCODE="status_code"
STATUSTEXT="status_text">
NAME
Required if you do not specify the STATUSCODE attribute. A name for the header.
VALUE
Optional. A value for the HTTP header. This attribute is used in conjunction with
the NAME attribute.
STATUSCODE
Required if you do not specify the NAME attribute. A number that sets the HTTP
status code.
STATUSTEXT
Optional. Text that explains the status code. This attribute is used in conjunction
with the STATUSCODE attribute.
Example
<!--- This example shows the use of CFHEADER --->
<HTML>
<HEAD>
<TITLE>CFHEADER Example</TITLE>
</HEAD>
<BODY>
<H3>CFHEADER Example</H3>
<P>CFHEADER generates custom HTTP response headers
to return to the client.
<P>The following example forces the browser client
to purge its cache of a requested file.
<CFHEADER NAME="Expires" VALUE="#Now()#">
</BODY>
</HTML>
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...