Hello,
we noticed and issue that word would prompt a dialog that a document contains fields which reference another file:
I analyzed that this is due to our header file in doc format, which we include into the documents. After some further analysis I discovered the cause is the PAGE and NUMPAGE fields in the header
and saving it to docx.
Following snippet is enough to reproduce:
static void Main(string[] args)
{
var lic = new License();
lic.SetLicense(@"S:\Aspose.Total.Net.lic");
var doc = new Document(@"S:\tmp\header.doc");
doc.Save(@"S:\tmp\aspose.docx");
}
The error only occurs with the new version 22.05. The older versions never had those issues and also in 22.04 it still works good and word does not prompt that message when opening the rendered document.
I attached you the header.doc testfile and two outputs generated with Aspose 22.04 and Aspose 22.05 for reference which show the problem.
Thanks for your help,
Daniel
files.zip (69.6 KB)