On Fri, 16 Jul 2004 15:02:20 +0000 (UTC), in macromedia.dreamweaver
"balex" <webforumsuser (AT) macromedia (DOT) com> wrote:
Quote:
| 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. |
<link rel=alternate media=print href="printversion.asp">
The above should redirect your browser to the specified file for
printing.
Quote:
| 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 ? |
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; }
}
Quote:
| I use DW MX 2004 on Windows XP, ASP, Javascript, IIS and an Access database.
|
| Thanks for help.
| Balex |