I have a report (Claim.rpt) that needs 1 parameter passed to it. The report was added to my .NET application. This report accesses the stored procedure via a "Command" inside of the report.
The parameter variable inside the report is called @Claim_ID.
I also have a webform (ViewClaim.aspx) that has a CrystalReportViewer on it. This viewer points to the report and calls "DataBind()".
I have another webform (Claim.aspx) that has a "Print" button on it. All that button needs to do is pass the claim ID from that Claim.aspx to the ViewClaim.aspx, then run the report viewing form. I was trying to do this via server.transfer.
Does that make sense?
When I run the application, I get an error:
CrystalDecisions.CrystalReports.Engine.ParameterFieldCurrentValueException: Missing parameter field current value.
Can someone help me out with this?
The parameter variable inside the report is called @Claim_ID.
I also have a webform (ViewClaim.aspx) that has a CrystalReportViewer on it. This viewer points to the report and calls "DataBind()".
I have another webform (Claim.aspx) that has a "Print" button on it. All that button needs to do is pass the claim ID from that Claim.aspx to the ViewClaim.aspx, then run the report viewing form. I was trying to do this via server.transfer.
Does that make sense?
When I run the application, I get an error:
CrystalDecisions.CrystalReports.Engine.ParameterFieldCurrentValueException: Missing parameter field current value.
Can someone help me out with this?