Hi,
I have some issues with crystal report in my web application (asp.net 2003) ....
In my web application, i have n no. of reports..say 10.. all work fine except 2 of them.
The issue with these 2 reports is that, though i can view them at run time, it displays incomplete data.
That is, when i load the report from my local drive, it shows incomplete data...using below code..
crReportDocument.Load(ables.strDocPathFolder + "\" + "ABC.rpt")
But when i add this report to my project and run application, it works fine..using below code:
Me.CrystalReportViewer1.ReportSource = Server.MapPath("ABC.rpt")
I want to load this report, and not to add it in my project..as this report can be changed anytime from outside.
Thanks to help.