How do I print out word doc page numbers in html output?

Hi,
I have a word doc/docx.
I am converting this to html using the code below.

The html output does not show the page numbers.
Is there an easy way to have the output html also include the page number which is in the page footer?

document = DocumentModel.Load(originalFilename);
document.Save(newFilename, SaveOptions.HtmlDefault);

Thanks

Hi Mickey,

The problem is that the document is exported as flowable HTML, in other words, all the elements of all the pages are exported with the default static positioning.
Currently, GemBox.Document doesn’t have support for fixed HTML, for exporting elements using absolute positioning.

Regards,
Mario