3

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.

user2219742
  • 69
  • 1
  • 1
  • 4

1 Answers1

7

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

Manish Mishra
  • 12,163
  • 5
  • 35
  • 59