I am testing your product aspose.word .net.
We thinking of buying it it for a letter generator project.
I am storing HTML in a database to create dynamic letters. but i need to added a page break.
I like to do in HTML How do i add page break to a word document through a HTML style tag.
I have tried:
<div><p><br style="page-break-before:aways; clear:both;"></p></div>
but does not seem to work.
I am looping though a record set using a stringbuilder to build up the HTML string then I am append it to doc with
html = strbuilder.ToString();
builder.InsertHtml(html);