Hi All,
I am currently developing an application in Visual Studios 2005 that uses reports constructed in CR XI release 2. For some reason the reports seem to hang(completely stop loading) during the load() method. Here is my code:
private void ConfigurePPCReport()
{
ReportDocument PPC = new ReportDocument();
String reportName = "PPC Report.rpt";
string reportPath = Server.MapPath(reportName);
if (Session["Report"] == null)
{
PPC.Load(reportPath);
any help would be greatly appreciated.
I am currently developing an application in Visual Studios 2005 that uses reports constructed in CR XI release 2. For some reason the reports seem to hang(completely stop loading) during the load() method. Here is my code:
private void ConfigurePPCReport()
{
ReportDocument PPC = new ReportDocument();
String reportName = "PPC Report.rpt";
string reportPath = Server.MapPath(reportName);
if (Session["Report"] == null)
{
PPC.Load(reportPath);
any help would be greatly appreciated.