SSRS parameter setting from asp.net
I have an ASP.NET form which navigates to SSRS report along with the query string Values. How can I set the QueryString values to SSRS filteration parameter I have given like this .
http://localhost/Reports/Pages/Report.aspx?ItemPath=%2fAction_Items_Report%2fReportMain&rs:Command=Render&area=US
Area is the parameter name.
November 9th, 2010 6:32am
HI,
Got the solution!!!!!. The problem is in accessing the URL. Earlier I used to access the report as
http://localhost/Reports/Pages/Report.aspx?ItemPath=%2fAction_Items_Report%2fReportMain&rs:Command=Render&area=US
Changed to
http://localhost/reportserver?/Action_Items_Report/ReportMain&area=US
http://ServerName/reportserver?/FolderThatContainsAllReports/ReportName&ParameterName=ValueToBeAssigned
It's working now
Free Windows Admin Tool Kit Click here and download it now
November 9th, 2010 8:04am