I'm trying to force download of report generated using
CFREPORT without first saving it to a file, is that possible? The
way I was going about it was using the "name" attribute of the
CFREPORT tag to save the output of the report to a variable and
then using the following code:
<cfheader name="Content-Disposition" value="attachment; filename=test.pdf">
<cfcontent type="application/pdf">
<cfoutput>#LOCAL.reportOutput#</cfoutput>
This is unfortunately not working. Anybody have any ideas?
<cfheader name="Content-Disposition" value="attachment; filename=test.pdf">
<cfcontent type="application/pdf">
<cfoutput>#LOCAL.reportOutput#</cfoutput>
This is unfortunately not working. Anybody have any ideas?