PDA

View Full Version : Page Breaks


klunevich
07-27-2006, 09:05 AM
Does anyone know if you can add a page break tag to HTML page code that will trigger PrimoPDF to start printing on a new page?

On a server based product (Web Grabber) from activePDF (which I believe is affiliated somehow with primoPDF) there is a tag <WxPrinter PageBreak> that will tell the printer to start printing a new page once it sees this tag. For example:
<html>
<head>
<title>Untitled Page</title>
</head>
<body>
This will be page one.
<!--
Add a page break so that the next line is
printed out on a separate page
-->
<WxPrinter PageBreak>
This will be page two
</body>
</html>

Thanks for the help.