I am also having the same problem. Set the table row in word to repeat. Looks fine in Word itself.
Load it in aspose as pdf and the header row does not repeat the header row when using the new way of saving as pdf:
resultDoc.Save("RunReport.pdf", Aspose.Words.SaveFormat.Pdf, Aspose.Words.SaveType.OpenInBrowser, Response);
However, I have noticed that the table header will repeat if I use the Legacy way of converting DOC to PDF:
public static void SendToBrowserAsPdf(Document doc, System.Web.HttpResponse response)<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />
{
//Save the document in Aspose.Pdf.Xml format into a memory stream.
MemoryStream stream = new MemoryStream();
doc.Save(stream, SaveFormat.AsposePdf/*.FormatAsposePdf*/);
//Seek to the beginning so it can be read by XmlDocument.
stream.Seek(0, SeekOrigin.Begin);
//Load the document into an XmlDocument
XmlDocument xmlDoc = new XmlDocument();
xmlDoc.Load(stream);
//Load the XML document into Aspose.Pdf
Aspose.Pdf.Pdf pdf = new Aspose.Pdf.Pdf();
//Make sure the images that were saved by Aspose.Words into Windows temporary
//folder are automatically deleted by Aspose.Pdf when they are no longer needed.
pdf.IsImagesInXmlDeleteNeeded = true;
pdf.BindXML(xmlDoc, null);
//*** Aspose.Pdf font cache, see comments below.
//pdf.IsTruetypeFontMapCached = false;
//If you convert to PDF multiple files in your application,
//uncomment the following lines to improve the speed of conversion.
pdf.IsTruetypeFontMapCached = true;
pdf.TruetypeFontMapPath = System.IO.Path.GetTempPath();//
//Now produce the PDF file.
pdf.Save("Report.pdf", Aspose.Pdf.SaveType.OpenInBrowser, response);
}
Any estimated time for the fix to be available? Thanks.