Posts: 2,480
Name: Keith Marshall
Location: West Hartford, CT
|
Are you using a server-side code?
You might even be able to do the following with javascript too
Here is how I would do it in php. In the html header, set your print href to the current page with url query set to something like <?php echo $_SERVER['PHP_SELF']; ?>?print=9
When you click on a javascript button you made on the page to "Print This Page", the print url will be redirected to the url above. Using php, check if $_GET['print'] isset and loop the page content X number of times, using CSS to define a page break after each loop.
So, the page is printing one copy, but the printer will spit out X number of pages with identical copies.
Alternativly, you could research if you can make vbscript define the number of copies set in the print dialoge box.
__________________
<mgraphic /> - I don't have a solution but I admire the problem.
|