Hi,
That's not exactly how it works. Here are the basic steps:
1. Render your main contents with HTML to PDF. This will give you a PdfDocument object;
2. Build an ACM content tree with the following structure:
Code:
AcmContent <--- root content
AcmLink <--- link on the first page
AcmPageBreak <--- force a page break
AcmLink <--- link on the second page
AcmPageBreak <--- force a page break
......
AcmLink <--- link on the second last page
AcmPageBreak <--- force a page break
AcmContent <--- dummy content on the last page
3. Set each AcmLink's TargetContent to the next AcmLink, except for the last one. Since the last page does not need a link, you would replace it with a dummy AcmContent that does not generate any visible output;
4. Create an AcmRender passing the existing PdfDocument as output document;
5. Call the AcmRender's Render method to render the above content tree;
Once you get the basic working, you can then look into page/formatting options as to where to position the link as well as styles (font, color, etc) for the link.
Hope this get you started. Please feel free to let us know if you still have any questions
Thanks!