Hello,
I am trying to export a grid to PDF on shared hosting. From what I can tell PDF export needs full trust to write a temporary pdf to the server. I do not have full trust on the server.
Is there a way to export the PDF to MemoryStream and then write the MemoryStream's content using something like:
Response.ContentType = "application/pdf";
Response.AddHeader("Content-Type", "application/pdf");
Response.BinaryWrite(....);
Response.Ende();
?
I am trying to export a grid to PDF on shared hosting. From what I can tell PDF export needs full trust to write a temporary pdf to the server. I do not have full trust on the server.
Is there a way to export the PDF to MemoryStream and then write the MemoryStream's content using something like:
Response.ContentType = "application/pdf";
Response.AddHeader("Content-Type", "application/pdf");
Response.BinaryWrite(....);
Response.Ende();
?