Hi Jonathan,
You may try to use a Grid element and add two footers to it. Set the Repeat property of the first footer to true and Repeat property of the second footer to false. Then add a PageNumber element to the first footer. The rest of your content should be inside the grid iteself (Simply add one row and one cell and place all the rest of your content there.)
Siberix.Report.Grid.IGrid grid = section.AddGrid();
Siberix.Report.Grid.IColumn column = grid.AddColumn();
column.Width = new Siberix.Report.RelativeWidth(100);
Siberix.Report.Grid.IFooter footer1 = grid.AddFooter();
footer1.Repeat = true;
Siberix.Report.Grid.IRow row = footer1.AddRow();
Siberix.Report.Grid.ICell cell = row.AddCell();
IPageNumber pn = cell.AddPageNumber();
Siberix.Report.Grid.IFooter footer1 = grid.AddFooter();
footer1.Repeat = false;
row = footer2.AddRow();
cell = row.AddCell();
-- The rest of the content
row = grid.AddRow();
cell = row.AddCell();
cell.AddText(...)
....
Thank You,
Victor