Easiest way to pass parameters to Crystal Report f

2019-08-31 05:56发布

I'm learning how to pass parameters to a Crystal Report from a C# asp.net webform. I've found one way to pass parameters, but its 6 lines of code per parameter. Can anyone suggest a simpler way to pass parameters (both discrete and range) to the report?

2条回答
劳资没心,怎么记你
2楼-- · 2019-08-31 06:04

Here's a question and answer I had that addresses this question:

Crystal Reports "File Break"

Out of the code that I posted in the answer, here's what I think is relevant to your problem:

private readonly CrystalReportViewer reportViewer = new CrystalReportViewer();
...
    crystalReport.Load(this.reportViewer.ReportSource.ToString());

    crystalReport.SetParameterValue("customerId", customerId);
    crystalReport.SetParameterValue("isCurrent", isCurrent);
    crystalReport.SetParameterValue("TotalSales", totalSales);

Good luck!

查看更多
登录 后发表回答