Naren,
You could use CSS to do this:
<style> div.workitem { page-break-after: always; }
div.lastworkitem { page-break-after: auto; } </style>
You would then put:
<div class="workitem">
</div>
Around each work item, but to prevent a page break after the last work item you would put this around it instead:
<div class="lastworkitem">
</div>
It works in IE pretty well...
William |