Hi,
I use the page-break-before CSS property to generate page breaks. Simply delcare in your style sheet...
<STYLE TYPE="text/css">
P.breakhere {page-break-before: always}
</STYLE>
And then, whenever you need a page break, use a <P> tag with a "breakhere" class, i.e...
<P CLASS="breakhere">
I don't think this works in all browsers, however. It definitely works in IE.
Good luck
|