cfdump - get output in a file or browser
cfdumpOutput.cfm
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>cfdump tag: how to get output in a file or browser</title>
</head>
<body>
<h2 style="color:OrangeRed; font-style:italic">cfdump tag example: how to get output in a file or browser</h2>
<hr width="575" align="left" color="CadetBlue" />
<br />
<cfquery name="qCenters" datasource="cfdocexamples" maxrows="3">
Select Center_ID, Name From Centers
</cfquery>
<cfdump var="#qCenters#" label="Centers [file output]" output="c:\Centers.txt">
<br /><br />
<cfdump var="#qCenters#" label="Centers [browser output]" output="browser">
</body>
</html>
- How to use variable prefixes in ColdFusion
- ColdFusion variables typeless feature
- ColdFusion number and date format mask
- ColdFusion dynamic variables
- How to get coldfusion DataSource list programmatically
- How to dump and get output server variables in coldfusion
- How to create Microsoft Word document in ColdFusion
- ColdFusion - how to create and dump Application variables
- How to create a border type layout in ColdFusion
- How to determine whether a file exists in ColdFusion