0

I have SSRS report and i pass the URL from one report and redirect to another report secound report have some parameter and i redirect fron first report with parameter it redirecting but not assign that parameter to the text boxes of parameters can you plese help me out sample URL

http:///Report.aspx?ItemPath=&rs:Command=Render&rp:CustomerNo=002&rp:CountryCode="123

4

2 回答 2

0

您需要的是子报告/深入报告查看此链接将提供一些线索

于 2013-06-19T12:02:18.427 回答
0

您有正确的想法,但您的链接格式不正确。您的表达式需要如下所示(例如,要呈现为 PDF):

="http://servername/ReportServer?http://full/path/to/report/ReportName.rdl&rs%3aCommand=Render&CustomerNo=" & CStr(Fields!CustomerNo.Value) & "&CountryCode=" & Fields!CountryCode.Value & "&rs%3aFormat=PDF"
于 2013-06-20T00:22:23.833 回答