PDFドキュメントに新しいページを追加しようとしていますが、何らかの理由でこれが発生していません。たぶん私の他の質問https://stackoverflow.com/questions/11428878/itextsharp-splitlate-not-workingは、この質問のテーブルが壊れず、新しいページが作成されないため、これと関係があります。これは私が新しいページを追加するために持っているコードです:
Document doc = new iTextSharp.text.Document(iTextSharp.text.PageSize.A4.Rotate(),20,20,20,40);
string rep1Name; // variable to hold the file name of the first part of the report
rep1Name = Guid.NewGuid().ToString() + ".pdf";
FileStream output = new FileStream(System.Web.HttpContext.Current.Server.MapPath("~/ReportGeneratedFiles/reports/" + rep1Name), FileMode.Create);
PdfWriter pdfWriter = PdfWriter.GetInstance(doc, output);
doc.Open();
doc.NewPage();
doc.NewPage();
doc.Close();