private void ExportReport(Telerik.Reporting.Report Report)
{
string MimeType = string.Empty;
string Extension = string.Empty;
Encoding Encoding = null;
byte[] Buffer = ReportProcessor.Render("PDF", Report, null, out MimeType, out Extension, out Encoding);
Response.Clear();
Response.Buffer =
true;
Response.ContentType =
"application/pdf";
Response.AppendHeader(
"content-disposition", "attachment;filename=Report.pdf");
Response.BinaryWrite(Buffer);
Response.End();
}
In the IE i can directly open the pdf or save it. When i save it and then open it everything is okay. But when i click on open in the dialog my acrobat reader is executing but the message "file not found" show. What can i do. On an other client it works. I think it must be a client setting.