We use the Aspose PDF Generator for .NET in an MVC Application. I have a Aspose.PDF.GENERATOR.PDF object which I save to the output stream:
//Save temporary file pdf.Save(this.Response.OutputStream); Response.ContentType = "application/pdf"; Response.AppendHeader("Content-Disposition", "inline; filename=file.pdf"); return new EmptyResult();
Now we have to insert an uploaded PDF into our PDF which we create per code? Is this possible?
Best regards