Crystal Report Error: System.NullReferenceException
ASP.NET
1
Posts
1
Posters
0
Views
1
Watching
-
here is my COde:
public class REPORT : System.Web.UI.Page { protected CrystalDecisions.Web.CrystalReportViewer CrystalReportViewer1; override protected void OnInit(EventArgs e) { InitializeComponent(); CrystalReportViewer1.ReportSource = @"C:\Program Files\Microsoft Visual Studio .NET\" +"Crystal Reports\\Samples\\Reports\\"+"General Business\\World Sales Report.rpt"; //CrystalReportViewer1.DataBind(); base.OnInit(e); } }
while runing the web project, there turns out a System.NullReferenceException. i dont know why ?