Dear all I am working on an asp .net application in which I am using crystal report for showing reports.
In my application everything works fine including the reports. The real problem comes when I start clicking on the crystal report toolbar. If I click on any buttons on the crystal report tool bar like (Export, next page ...etc.) it is asking parameters again. Is there any way so that that the crystal report viewer does not ask the parameter that I have already given ?
I have also given true for the property reuseparametervaluesonrefresh
. i am passing parameters to the report document.
ReportDocument rd = new ReportDocument();
rd.SetParameterValue("@Date", Request["Date"]); CrystalReportViewer1.ReportSource = rd;