vote up 4 vote down star
1

I'm just curious how most people make their ASP.NET pages printer-friendly? Do you create a separate printer-friendly version of the ASPX page, use CSS or something else? How do you handle situations like page breaks and wide tables?

Is there one elegant solution that works for the majority of the cases?

flag

5 Answers

vote up 9 vote down check

You basically make another CSS file that hide things or gives simpler "printer-friendly" style to things then add that with a "media=print" so that it only applies to print media (when it is printed)

<link rel="stylesheet" type="text/css" media="print" href="print.css" />
link|flag
vote up 4 vote down

Our gracious host wrote a good blog post on this topic:

Coding Horror: Stylesheets for Print and Handheld

link|flag
vote up 0 vote down

I am a php user, but the point must be that the result no matter what is HTML and HTML is styled with CSS and there is an option for your style sheets for just using the style for printing. This should be the way to do it, imho. About big tables, there isnt really a magic "fix" for that. Page will break where it breaks, dont really understand the problem here either.

<link rel="stylesheet" type="text/css" media="print" href="print.css" /> 
<link rel="stylesheet" type="text/css" media="screen" href="screen.css" />
link|flag
vote up 0 vote down

CSS is what I've used in the past. Creating separate versions of every page is an option, but not one that scales well to a site of any size.

link|flag
vote up 1 vote down

http://www.alistapart.com/stories/goingtoprint/

Simple, the use of a print style sheet.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.