Set Content in all page except last page on PDF print

Add the content in the table footer and then after this table, add another table with blank image to set a content in all page except last page as a last content . Make some adjustment in the blank image alignment. Refer the following Code Sample

<table style="width:100%;">
<thead>  <!-- add the content --></thead>
<tbody>  <!-- add the content --></tbody>
<tfoot> <!-- include the content that want to display all page except last page --></tfoot>
</table>
<!-- Add another table for set blank image -->
<table style="width:100%;">
<tr><td>  <!-- set image and make some alignment adjustment to hide the above tfoot content --> </td></tr>
</table>

Leave a comment

Your email address will not be published. Required fields are marked *