Printing many pages in one go

message from balex on 16 Jul 2004
Hi,

I have an app that has about 8 pages for a given set of data. I'd like to
allow the users to print all this data in one go, i.e. a collection of pages. I
know how to print the content of one page, but not of many "related" pages. Can
someone tell me if that's feasible, and if yes, how.

On a related note, is there also a way to print only a part of a page, for
example the part where the data is, without navigation elements, or even
better, the content of a given table ?

I use DW MX 2004 on Windows XP, ASP, Javascript, IIS and an Access database.

Thanks for help.
Balex
 
Jeff North replied to balex on 17 Jul 2004
<link rel=alternate media=print href="printversion.asp">

The above should redirect your browser to the specified file for
printing.

You can use CSS for this:
@media screen {
.noPrint { display:;
background: black;
font-size: 20px;
color: aqua;
border: 2px solid aqua;
margin: 10px 10px;
padding: 10px 10px;
}
@media print {
.noPrint { display: none; }
 
darrel replied to balex on 16 Jul 2004
I'm pretty sure you can't.

Yep...use Print style sheets for that. Look up "print CSS" in google.

-Darrel
 

Archived message: Printing many pages in one go (Macromedia Dreamweaver Web Design)