hi
i created one report in my web application.
I have to show 12 fields in report so when i was show that filed the report is expanded.I cant show all the value sin report viewr
if i generate as pdf some fiedls missing
string
mimeType = string.Empty;
string ext = string.Empty;
Encoding encoding = Encoding.Default;
byte[] reportBytes = Telerik.Reporting.Processing.ReportProcessor.Render(
"PDF"
, reportToExport
,
null
,
out mimeType
,
out ext
,
out encoding);
string fileName = reportName + ".pdf";
Response.Clear();
Response.ContentType = mimeType;
Response.Cache.SetCacheability(
HttpCacheability.Private);
Response.Expires = -1;
Response.Buffer =
false;
Response.AddHeader(
"Content-Disposition",
string.Format("{0};FileName=\"{1}\"",
"attachment",
fileName));
Response.OutputStream.Write(reportBytes, 0, reportBytes.Length);
Response.End();
PDF is generated but Recodr is not coming fully
how to solv this prob
Regards
Abdul Ajees