user2219742
user2219742

Reputation: 69

Sending field parameters to SSRS action link

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.

Upvotes: 3

Views: 18808

Answers (1)

Manish Mishra
Manish Mishra

Reputation: 12375

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.

enter image description here

Upvotes: 7

Related Questions