I am using crystal report 2008 in Visual Studio 2008 to create and export reports programmatically.
But export to pdf shows blank or an empty page, but export to Microsoft word or excel shows data.
ReportDocument rd = new ReportDocument();
rd.SetDataSource(dataset)
rd.ExportToHttpResponse(ExportFormatType.PortableDocFormat, Response, false, "Report");
What can be the problem?