When trying to print a multi-page webpage, I encounter an issue with the headers. How can I ensure that different headers appear on each page after the first one?
Specifically, my problem arises when a label on the first page spans across to the second page. This causes the header on the second page to be the same as the first, when I actually want it to be different.
I have tried defining the headers using a table structure like this:
<table>
<thead>
(...Header Html Code)
</thead>
<tbody>
(...Html Code with label containing lots of text)
</tbody>
</table>