CFHEADER generates custom HTTP response headers to return to the client.
<CFHEADER NAME="header_name" VALUE="header_value">
or
<CFHEADER STATUSCODE="status_code" STATUSTEXT="status_text">
Required if you do not specify the STATUSCODE attribute. A name for the header.
Optional. A value for the HTTP header. This attribute is used in conjunction with the NAME attribute.
Required if you do not specify the NAME attribute. A number that sets the HTTP status code.
Optional. Text that explains the status code. This attribute is used in conjunction with the STATUSCODE attribute.
<!--- 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>