The <th> tag defines a header cell in an html table.
Every time a continuation page of the table is printed, the same content of the header cell <th> is printed at the top of the page.
Question: how can the text of this header cell from the 2nd printed page differ from the 1st page?
The following attempt with IIF does not work.
Thanks for tips.
Every time a continuation page of the table is printed, the same content of the header cell <th> is printed at the top of the page.
Question: how can the text of this header cell from the 2nd printed page differ from the 1st page?
The following attempt with IIF does not work.
Thanks for tips.
Code:
<body>
<table border="1">
<thead>
<tr>
<th width="25" align="right"><b><i>Nr.</i></b></td>
<th width="100" align="left"><b><i>
<%Response.Write IIf(PageBreak=true, "newName", "Name")%></b></td>
<th width="70" align="left"><b><i>Date</i></b></td>
</tr>
</thead>