Sending field parameters to SSRS action link

荒凉一梦 提交于 2019-12-07 15:15:59

问题


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

but it is saying as, Input String was not in a correct format. When i tried with the format as 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.

Thanks in Advance, Raghava.


回答1:


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

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

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

it should work.



来源:https://stackoverflow.com/questions/15682158/sending-field-parameters-to-ssrs-action-link

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!