Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

dinktopdf page break

using css we can control page breaking
table {
    page-break-inside: auto
}

tr {
    /*page-break-inside: avoid;*/
    page-break-after: always;
    display: table-row-group;
}

thead {
    display: table-header-group;
}

tfoot {
    display: table-footer-group;
    display: table-row-group;
}

or

<div style="height: 1308px; overflow:hidden;"></div>
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #dinktopdf #page #break
ADD COMMENT
Topic
Name
6+7 =