Hi,
I Have a report webpage with multiple subreport in it.
the datesource of the report of each subreport is a stored procedure
with a parameter. So i need to pass this parameter.
I add a property of each report
For a page with a simple report i make that :
How to make the same with a subreport or perhaps there is another method ?
Thanks
Eric
I Have a report webpage with multiple subreport in it.
the datesource of the report of each subreport is a stored procedure
with a parameter. So i need to pass this parameter.
I add a property of each report
| Public Property IdCible() As String |
| Get |
| Return SqldaCible.SelectCommand.Parameters(0).Value.ToString |
| End Get |
| Set(ByVal value As String) |
| SqldaCible.SelectCommand.Parameters(0).Value = value |
| End Set |
| End Property |
For a page with a simple report i make that :
| Dim Idcible As String = Request.QueryString("IdCible").ToString |
| CType(ReportViewer1.Report, Report2).IdCible = Idcible |
Thanks
Eric