Die JSON-Schnittstelle jsonBerichte.asmx liefert base64-codierte PDF-Dateien. Diese können sowohl in aspx als auch in php decodiert und direkt im Browser angezeigt werden.
C#
Response.Clear();Response.ContentType = "application/pdf";Response.Cache.SetCacheability(System.Web.HttpCacheability.Private);Response.Expires = -1;Response.Buffer = true;Response.AddHeader("content-disposition", string.Format("{0};filename=\"{1}\"", "attachment", "report.pdf"));byte[] filebytes = Convert.FromBase64String(base64string);Response.BinaryWrite(filebytes);Response.End();
php
$base64_string = '';$decoded_pdf = base64_decode($base64_string);header('Content-Type: application/pdf;content-disposition: attachment;filename="report.pdf"');echo $decoded_pdf;
Kommentare
Bitte melden Sie sich an, um einen Kommentar zu hinterlassen.