Hello,
I have XML files which consist of 1 record each. Approximate structure of the XML file is as follow:
<Project>
<CaseNo> 1111</CaseNo>
<CaseStruct>XYZ</CaseStruct>
<files>
<file>
<id>0</id>
<pdfname></pdfname>
</file>
<file>
<id>1</id>
<pdfname>test1.pdf</pdfname>
</file>
<file>
<id>2</id>
<pdfname>test2.df</pdfname>
</file>
<file>
<id>3</id>
<pdfname>test3.pdf</pdfname>
</file>
</files>
</Project>
As you can see the detail table has severeal detail records with the pdfname field which points to the PDF files to call.
I also need to add logos and some dynamic text to each page of the final output. I guess I could do this this part with a master page?
How do I dynamically call and load all the multipage PDF from the record detail in my section?
Many thanks in advance?
Steve