8.2.2. Setting MIME Types with ColdFusion

In ColdFusion, the following line of code is used to set the MIME type of a document:


<CFCONTENT TYPE="mimeType">


For example, to set the MIME type of a document to "application/vnd.wap.xhtml+xml", use the ColdFusion code below:


<CFCONTENT TYPE="application/vnd.wap.xhtml+xml"><?xml version="1.0"?>
<!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//EN" "http://www.wapforum.org/DTD/xhtml-mobile10.dtd">
...


The <CFCONTENT> tag and the XML declaration are placed on the same line so that there will have no whitespace before the XML declaration after doing server-side processing.


Previous Page Page 8 of 13 Next Page


A button for going back to the top of this page