There are probably better ways of doing this, but you can force a page break after your html tags like div:
<DIV style="page-break-after: always;"></div>
Or if your page is specifically for printing you can have it converted to a word document by heading it with asp code:
response.buffer = true
response.ContentType = "application/vnd.ms-word"
response.AddHeader "content-disposition", "inline; filename=dynamic.doc"
|