开发者

Crystal Reports - export to pdf in MVC

开发者 https://www.devze.com 2022-12-30 00:05 出处:网络
I have integrated the below code in my application to generate a \'pdf\' file using crystal reports in MVC project.

I have integrated the below code in my application to generate a 'pdf' file using crystal reports in MVC project. However, after the request is processed, i get to see only 2 pages in the pdf file while my开发者_开发百科 'data' returns more than 2 records. Also, the pdf isn't rendered as soon as the page is processed but instead i have to refresh atleast once, then the pdf is rendered on the browser.

using CrystalDecisions.CrystalReports.Engine;

public FileStreamResult Report()
{
    ReportClass rptH = new ReportClass();
    List<sampledataset> data = objdb.getdataset();
    rptH.FileName = Server.MapPath("[reportName].rpt");
    rptH.Load();
    rptH.SetDatabaseLogon("un", "pwd", "server", "db");
    rptH.SetDataSource(data);
    Stream stream = rptH.ExportToStream
       (CrystalDecisions.Shared.ExportFormatType.PortableDocFormat);
    stream.Seek(0, System.IO.SeekOrigin.Begin);
    return new FileStreamResult(stream, "application/pdf");   
}

I took the code from here in SO but modified it like above.

TIA.

EDIT: This works on Firefox, not in IE7.


I finally found the solution here on SO. It had nothing to do with MVC but the way IE treats popup window.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号