如何将参数从 ASP.NET 传递到 SSRS 报告?
我需要将一个值作为参数从 ASP.Net 应用程序传递到 SSRS 报告。我该怎么做?任何人都可以帮助我吗?
提前致谢。
I need to pass a value as a parameter from ASP.Net application to SSRS Report.How can i do this?Can anybody help me ?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请按照以下行尝试...
Follow the following line and try it...
您可以传递用于获取报告的 URL 中的参数值。
此外,您还应该在您的报告的
/reports/Pages/Folder.aspx
中禁用“提示用户(用于参数)”。设置名为
ParameterName
的参数的示例:/Reports/Pages/Report.aspx?...&ParameterName=ParameterValue
使用浏览器查看报告
You can pass the parameter values in the URL used to get the report.
Also you should disable the "Promt user (for parameters)" in
/reports/Pages/Folder.aspx
for your report.Example of setting a parameter named
ParameterName
:/Reports/Pages/Report.aspx?...&ParameterName=ParameterValue
Viewing Reports with a Browser