hello,
in the same report i try to put the number at the bottom of the page and here is my style css
<style type="text/css">
@page {
@bottom-right {
content: counter(page) " of " counter(pages);
}
}
</style>
at my bottom of the report, i create a label to hold the number please look.
<table>
<tr>
<td><p class="padding10"><asp:Label ID="Label41" runat="server" Text="Update:" Font-Size="18px"></asp:Label></p></td>
<td><p class="padding3"><asp:Label ID="Datelbl" runat="server" Text="" Font-Size="18px"></asp:Label></p></td>
<td><p class="padding3"><asp:Label ID="Label42" runat="server" Text="18-19" Font-Size="18px"></asp:Label></p></td>
<td><p class="page"><asp:Label ID="PageNumlbl" runat="server" Text=" " Font-Size="18px"></asp:Label></p></td>
</tr>
</table>
where and how do i put this code into the HTML to get it to work of the page number?
i also have another CSS code. i try many different way to get the page number into my website, but none of them work.
maybe i don't know how to put these code into the HTML page. please help.
#content {
display: table;
page-break-after: left;
}
#pageFooter {
display: table-footer-group;
}
#pageFooter:after {
counter-increment: page;
content: counter(page);
}
thanks.