Navigating to external URL with parameters

  • I have a client that has a corporate directory online. You can search their directory by last name, first name, etc. I want to be able to use fields from a report for last name and first name in the URL to pull the information for the staff on the report. The URL is similar to

    http://dir.myinsanelylargecompany.com/staff.asp?txtFirst=&txtLast=Davis

    My question is, how can I code the URL on the navigation tab of the text field so that I can pass Fields!LastName.Value to the URL?

    Thanks.

  • I think this will answer your question:

    http://msdn.microsoft.com/en-us/library/ms155391(SQL.90).aspx

  • Thanks for the reply. The example seems to pass the parameters to another report. However, I am trying to pass the parameters from a report to an asp page on a client's intranet. I am trying to add the values of the parameters in the URL I am tying to navigate to.

  • In the expression for the URL, try something like this -

    ="http://dir.myinsanelylargecompany.com/staff.asp?txtFirst=" + Fields!FirstName.Value + "&txtLast=" + Fields!LastName.Value

Viewing 4 posts - 1 through 3 (of 3 total)

You must be logged in to reply to this topic. Login to reply