views:

425

answers:

1
  • I have SSRS report with its own datasets coming straight from the database. I have the report on ASP.NET application page.
  • The application page header has the username and user region details defined in the master page.
  • Now, I want to read this region id label from the ASP.NET page and build my report accordingly. Basically building dataset based on parameters coming from ASP.NET page.
  • Is this possible at all?
A: 

yes, you can send these as parameter to report....

ReportParameter rpt = new ReportParameter("name", "value");
Muhammad Akhtar