I am not sure whether this is the right forum to put this into. This may either be an issue in Aspose.Words or Aspose.PDF. What is happening is that I have tmeplates set up to use the full page in word. When it is converted to PDF, there is a blank page added to the end of the document. I am not sure if the issue is in creating the XML file or creating the PDF from the XML file.
I am using the following code.
Dim oWord As Aspose.Words.Document = New Aspose.Words.Document(sTemplatePath)
oWord.Save(sXMLPath, Aspose.Words.SaveFormat.AsposePdf)
Dim oPDF As New Aspose.Pdf.Pdf
oPDF.BindXML(sXMLPath, Nothing)
oPDF.Save(sPDFPath)
Also I am attaching the test Word document and the PDF that is created by the conversion.
Thanks for your time.