Developing an ASP.NET site that will have access to an SSRS.
Upon landing on a page the user will click a link to navigate to the Reports.aspx page.
The page_load event contains VB to access the report and load it into a reportViewer on the Reports.aspx page.
It does this quite well, but it does not load with the parameter that I send through the URL.
The Reports page reads my parameter. It is the .ServerReport.SetParameters() line that will not work for me.
The page still loads with the desired report but I have to manually select the parameter.
This is what the Watch Window is telling me:
"Item = In order to evaluate an indexed property, the property must be qualified and the arguments must be explicitly supplied by the user."
"Item = Argument not specified for parameter 'index' of 'Public Default Property Item(index As Integer) As String'."
Someone please explain why this is occuring and how I can work around it or fix it.
Thanks,
Stephen Cavender