Error loading the error report that was registered while trying to open the Crystal report, and if I restart iis (iisreset), it will work.
Here is my code:
Dim objReport As New CrystalDecisions.CrystalReports.Engine.ReportClass Dim location As String = context.Server.MapPath("../POC/POC1.rpt") objReport.FileName = location objReport.Load() objReport.SetDataSource(dsPOC)
What could be the problem?
source share