Is there anything that can be done to improve performance? I know I read that you are aware performance is a bit sluggish, but 1/15 the speed is BAD.
Thanks in advance,
Jason
Its very urgent...pls anyone give me a reply
Can we add a usercontrol to ReportViewer like we add text into
private
Telerik.Reporting.TextBox or image into
private
Telerik.Reporting.PictureBox..... Is there any solution to display a usercontrol with data directly inside the control. I tried to use Telerik Panel and there also its found not possible to add a control other than Telerik TextBox and other controls. Is there something like Placeholder control in Telerik controls for Reporting or if it is not there can we add it???? Please let me get a quick reply from any of the guys
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.