Whatever message this page gives is out now! Go check it out!
pageencoding = "page-encoding literal string">
OR
<cfprocessingdirective
pageEncoding = "page-encoding literal string"
suppressWhiteSpace = "yes|no">
CFML tags
</cfprocessingdirective>| Attribute | Req/Opt | Default | Description |
pageEncoding | Optional | Character encoding identified by the page byte order mark, if any; otherwise, system default encoding | A string literal; cannot be a variable. Identifies the character encoding of the current CFML page. This attribute affects the entire page, not just the cfprocessingdirective tag body. The value may be enclosed in single- or double-quotation marks, or none. The following list includes commonly used values:
|
suppressWhiteSpace | Optional | Boolean; whether to suppress white space characters within the cfprocessingdirective block that are generated by CFML tags and often do not affect HTML appearance. Does not affect any white space in HTML code. |
<cfprocessingdirective pageencoding=#dynEncoding#>
</cfif><cfprocessingdirective suppresswhitespace=#whitespaceSetting#>
code to whose output the setting is applied
</cfprocessingdirective><!--- CFML code --->
<cfprocessingdirective suppressWhiteSpace = "No">
<cfoutput>#table_data#
</cfoutput>
</cfprocessingdirective>
</cfprocessingdirective><cfprocessingdirective pageencoding = "shift_jis">