I am making an application ASP.NET
in C#
and I have a report in Crystal Report
recorded in a directory where the application is:
aplicación\bin\reportes\CR.rpt
When I try to give the route to the report it throws me an error of not finding the file, and I have already tried all the possible variants of the LOAD
CrRpt.Load(@"reportes\CR.rpt");
CrRpt.Load(@"reportes/CR.rpt");
CrRpt.Load(@"\reportes\CR.rpt"); etc
where CrRpt
is the ReportDocument
of Crystal
Can someone tell me what the problem might be