Skip to content Skip to sidebar Skip to footer

Add Page Number Whle Converting HTML To PDF

I am using a PDF generator http://www.nrecosite.com/pdf_generator_net.aspx I would like to add the poge number as well. following is my code: string htmlContent = '....'; var gen

Solution 1:

I added following code in my HTML then it worked well :)

<html>
<head>
    <script>
        function subst() {
            var vars = {};
            var x = document.location.search.substring(1).split('&');
            for (var i in x) { var z = x[i].split('=', 2); vars[z[0]] = unescape(z[1]); }
            var x = ['frompage', 'topage', 'page', 'webpage', 'section', 'subsection', 'subsubsection'];
            for (var i in x) {
                var y = document.getElementsByClassName(x[i]);
                for (var j = 0; j < y.length; ++j) y[j].textContent = vars[x[i]];
            }
        }
    </script>
</head>
<body style="border: 0; margin: 0;" onload="subst()">
    <table style="border-bottom: 1px solid black; width: 100%">
        <tr>
            <td class="section">
            </td>
            <td style="text-align: right">
                Page <span class="page"></span>of <span class="topage"></span>
            </td>
        </tr>
    </table>
</body>
</html>

Post a Comment for "Add Page Number Whle Converting HTML To PDF"