Whatever message this page gives is out now! Go check it out!
IsDDX(path)
IsDDX(value)Parameter | Description |
path | Pathname to the DDX file or a string of DDX instructions. The pathname can be absolute or relative to the CFM page that calls it and must be enclosed in quotation marks. |
<cfscript>
theDir=GetDirectoryFromPath(GetCurrentTemplatePath());
theFile=theDir & "sheets/Books_AddColumn.xlsx";
filetype = IsDDX(theFile);
writeoutput("Is this file of DDX file type: " & filetype & "<br>");
</cfscript>