Ejemplo n.º 1
0
        private void renderProductsListReport()
        {
            DashboardData reportData        = new DashboardData();
            var           data              = reportData.GetProductsList();
            var           reportDataSource1 = new Microsoft.Reporting.WebForms.ReportDataSource();

            reportDataSource1.Name  = "dsProducts";
            reportDataSource1.Value = data;
            this.ReportViewer1.LocalReport.DataSources.Add(reportDataSource1);
            ReportViewer1.LocalReport.ReportPath = Server.MapPath("~/Reports/Rdlc/ProductsList.rdlc");
            ReportViewer1.ShowPrintButton        = true;
            ReportViewer1.ZoomMode = ZoomMode.PageWidth;
        }