You could export your results to pdf, wich user can download.
Here are some resources where you can get some help:
http://www.school-for-cham
http://www.activepdf.com/e
ftvcs
Main Topics
Browse All TopicsHello CF developers...
Iam using cfml for generating reports for my application.
I would like to know whether coldfusion provides any options for printing the page...or do I have to make use of JavaScript or JSP....
I was shocked to see no results when I tried to search in CF Documentation for "<cfprint>" and "print" keywords..
Could anybody plz.. tellme how to get different printing options in coldfusionMX... I mean..How do I set the print options(not the browser ones) for my reports...
thanks in advance
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
You could export your results to pdf, wich user can download.
Here are some resources where you can get some help:
http://www.school-for-cham
http://www.activepdf.com/e
ftvcs
There are no print options because cold fusion runs on the server and printing is done on the client.
You can use javascript to simply trigger printing, but not to set any options.
If you want to format the pages you need to either set a print stylesheet using CSS
http://www.w3schools.com/c
Or you need to write an RTF (rich text file) (this is more complex):
http://www.johnwbartlett.c
Or you can write a PDF file, or some other format that the user can print.
Business Accounts
Answer for Membership
by: MausePosted on 2004-03-10 at 04:55:29ID: 10560188
Hi
CFML has no printing option because its a serverside language and not a clientside language.
I gues you need to use javascript or JSP to print
hope this helps
Mause