private void SetReport()
        {
            string report_path = GetReportPath();

            //webReport.LocalizationFile = "~/Localization/French.frl";

            System.Data.DataSet dataSet = new System.Data.DataSet();
            dataSet.ReadXml(report_path + "nwind.xml");
            webReport.Report.RegisterData(dataSet, "NorthWind");
            webReport.Report.Load(report_path + "Simple List.frx");
            webReport.CurrentTab.Name = "Simple List";

            // tab 2
            Report report2 = new Report();

            report2.RegisterData(dataSet, "NorthWind");
            report2.Load(report_path + "Labels.frx");
            webReport.AddTab(report2, "Labels");
            // tab 3
            Report report3 = new Report();

            report3.RegisterData(dataSet, "NorthWind");
            report3.Load(report_path + "Master-Detail.frx");
            webReport.AddTab(report3, "Master-Detail");
            webReport.DesignerPath = "WebReportDesigner/index.html";
            //webReport.DesignReport = true;
        }
        private void SetReport()
        {
            string report_path = GetReportPath();

            System.Data.DataSet dataSet = new System.Data.DataSet();
            dataSet.ReadXml(report_path + "nwind.xml");
            webReport.Report.RegisterData(dataSet, "NorthWind");
            webReport.Report.Load(report_path + "Simple List.frx");
            webReport.CurrentTab.Name = "Simple List";

            // tab 2
            Report report2 = new Report();

            report2.RegisterData(dataSet, "NorthWind");
            report2.Load(report_path + "Chart.frx");
            webReport.AddTab(report2, "Charts");
            // tab 3
            Report report3 = new Report();

            report3.RegisterData(dataSet, "NorthWind");
            report3.Load(report_path + "Master-Detail.frx");
            webReport.AddTab(report3, "Master-Detail");
        }