* RESOLVED - Looks like this was a PEBKAC error. I recreated the report this morning and it works great. Thanks!
It doesn't look like my report parameters are being passed through to the stored procedure in the data source. I'm on the trial version of Q1 2012.
Using the wizard, I created a simple report in an ASP.NET Web application that pulls data from a stored procedure with a single parameter. In the properties of the SQLDataSource I selected, "<New Report Parameter>" and created a report parameter assigned to the stored procedure parameter. At run time I display the report using the following code,
Seems pretty straight forward, but at run time the value "42" is not passed to my stored procedure. What am I missing?
It doesn't look like my report parameters are being passed through to the stored procedure in the data source. I'm on the trial version of Q1 2012.
Using the wizard, I created a simple report in an ASP.NET Web application that pulls data from a stored procedure with a single parameter. In the properties of the SQLDataSource I selected, "<New Report Parameter>" and created a report parameter assigned to the stored procedure parameter. At run time I display the report using the following code,
Dim
_Report
As
New
TSVStandardReports.Rpt_TelerikCustomersWithTwentyAccounts
DirectCast
(_Report.DataSource, Telerik.Reporting.SqlDataSource).ConnectionString = sConnectionString
_Report.ReportParameters(
"BranchID"
).Value =
"42"
ReportViewer1.Report = _Report
Seems pretty straight forward, but at run time the value "42" is not passed to my stored procedure. What am I missing?