ASP.NET /
VB.NET 7.1
Not sure why I'm getting this error message. I have a Crystal Report Viewer on my .aspx page (named 'ReportViewer'), a crystal report, and during the page_load event I have the following code:
ReportViewer.ReportSource = "CrystalReport1.rpt"
It is the name of my report, any ideas why I keep getting this in IE:
Load report failed.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: CrystalDecisions.CrystalReports.Engine.LoadSaveReportException: Load report failed.
Source Error:
Line 46: cr = New CrystalReport1
Line 47:
Line 48: ReportViewer.ReportSource = "CrystalReport1.rpt"
Line 49:
Line 50: 'Connection
Source File: c:\inetpub\ Line: 48
Stack Trace:
[LoadSaveReportException: Load report failed.]
CrystalDecisions.Web.ReportAgent.h() +328
CrystalDecisions.Web.ReportAgentBase.set_ReportSource(Object value) +224
CrystalDecisions.Web.ReportAgent.set_ReportSource(Object value) +16
CrystalDecisions.Web.CrystalReportViewerBase.set_ReportSource(Object value) +37
WebSchedule.WebForm1.Page_Load(Object sender, EventArgs e) in c:\inetpub\ System.Web.UI.Control.OnLoad(EventArgs e) +67
System.Web.UI.Control.LoadRecursive() +35
System.Web.UI.Page.ProcessRequestMain() +731
Any help or comments would be greatly appreciated!
Thanks in advance,
Jason
VB.NET 7.1
Not sure why I'm getting this error message. I have a Crystal Report Viewer on my .aspx page (named 'ReportViewer'), a crystal report, and during the page_load event I have the following code:
ReportViewer.ReportSource = "CrystalReport1.rpt"
It is the name of my report, any ideas why I keep getting this in IE:
Load report failed.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: CrystalDecisions.CrystalReports.Engine.LoadSaveReportException: Load report failed.
Source Error:
Line 46: cr = New CrystalReport1
Line 47:
Line 48: ReportViewer.ReportSource = "CrystalReport1.rpt"
Line 49:
Line 50: 'Connection
Source File: c:\inetpub\ Line: 48
Stack Trace:
[LoadSaveReportException: Load report failed.]
CrystalDecisions.Web.ReportAgent.h() +328
CrystalDecisions.Web.ReportAgentBase.set_ReportSource(Object value) +224
CrystalDecisions.Web.ReportAgent.set_ReportSource(Object value) +16
CrystalDecisions.Web.CrystalReportViewerBase.set_ReportSource(Object value) +37
WebSchedule.WebForm1.Page_Load(Object sender, EventArgs e) in c:\inetpub\ System.Web.UI.Control.OnLoad(EventArgs e) +67
System.Web.UI.Control.LoadRecursive() +35
System.Web.UI.Page.ProcessRequestMain() +731
Any help or comments would be greatly appreciated!
Thanks in advance,
Jason