0
cをPDFファイルasp.netへのエクスポートが、エラーをPDFにエクスポートする際にラインで来ている何の9エラー、私は以下のコードでCrystalレポートのエクスポートPDFで働いています#
ないError: Method not found: 'CrystalDecisions.ReportAppServer.DataDefModel.PropertyBag CrystalDecisions.ReportAppServer.ReportDefModel.ISCRExportOptions.get_ExportOptionsEx()'.
ReportDocument crystalReport = new ReportDocument();
crystalReport.Load(Server.MapPath("FrontRor_S.rpt"));
DataSet ds = GetData();
DataTable dt = new DataTable();
dt = ds.Tables[0];
crystalReport.SetDataSource(dt);
CrystalReportViewer1.ReportSource = crystalReport;
ExportFormatType formatType = ExportFormatType.PortableDocFormat;
crystalReport.ExportToHttpResponse(formatType, Response, true, "Crystal");
Response.End();
not working .... –