like invoking a report multiple times in a single pdf with reportviewer c #

0

I want to show the same pdf report several times in a single pdf with reportviewer .

this.ReportDataSets = new List<ReportDataSource>();

this.ReportDataSets.Add(new ReportDataSource("DataSetDetalleRecaudoICA", ListaDeRecaudoICA));
this.ReportDataSets.Add(new ReportDataSource("DataSetDetalleRecaudoICA", ListaDeRecaudoICA));

I add twice but when generating the pdf it only generates 1

    
asked by wilder guerrero ortega 19.02.2018 в 16:07
source

0 answers