将字段参数发送到

将字段参数发送到

本文介绍了将字段参数发送到 SSRS 操作链接的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我试图将字段参数传递给 SSRS 中的 Action Link,例如,http://mysite.aspx?id="+Fields!ID.Value

I was trying to pass field parameters to Action Link in SSRS like, http://mysite.aspx?id="+Fields!ID.Value

但它是说,输入字符串的格式不正确.当我尝试使用格式时因为 http://mysite.aspx?id=10(10 是静态的而不是动态的).它没有显示任何错误.

but it is saying as, Input String was not in a correct format. When i tried with the formatas http://mysite.aspx?id=10(10 is static not dynamic). It is not showing any error.

请告诉我我能做些什么,因为我对这个问题很感兴趣.

Please tell me what i can do, as i'm struck up with this issue.

提前致谢,拉加瓦.

推荐答案

右击你想建立超链接的字段,选择TextBox Properties,然后进入Action出现的弹出窗口中的选项卡.

right click the field you want to make hyperlink and select TextBox Properties, and then go to Action tab in the popup that appears.

并选择 Go To Url 选项并单击表达式并设置下面给定的表达式.

and choose Go To Url option and click on expression and set the below given expression.

="http://mysite.aspx?id=" & Fields!ID.Value

它应该可以工作.

这篇关于将字段参数发送到 SSRS 操作链接的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-23 23:00