views:

260

answers:

1

I have an asp.net web application. When I try to export a report via crystal report I get following error :

Error in File C:\DOCUME~1\User\LOCALS~1\Temp\MainReport {7F8A9E9E-DD47-4D17-A44D-68D9478A792C}.rpt: Operation not yet implemented.

I use this code to export report :

    ReportDocument reportDocument = reportSource.ReportDocument;
    reportDocument.SetDataSource(dt);
    Response.ClearContent();
    Response.ClearHeaders(); 
    reportDocument.ExportToHttpResponse(ExportFormatType.PortableDocFormat, Response, false, "Report");

Thanks in advance.

A: 

Does your report have non-standard fonts? If so, that could be the problem. See link text

djw