I am filling out a pdf and using response.binarywrite. I put it in the page - the problem is when I put it in the page it gets rid of the menu and other images existing in that page; and replaces them with a pdf. How do I keep the menu in the page and add the pdf?
pdfStamper.FormFlattening = false;
pdfStamper.Close();
pdfReader.Close();
Response.AddHeader("Content-Disposition", "inline; filename=Appraisal.pdf");
Response.ContentType = "application/pdf";
Response.BinaryWrite(output.ToArray());
Response.Flush();
Response.End();