February 6, 2009 at 12:09 pm
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.
February 6, 2009 at 3:08 pm
I think this will answer your question:
http://msdn.microsoft.com/en-us/library/ms155391(SQL.90).aspx
February 6, 2009 at 5:12 pm
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.
February 9, 2009 at 6:24 am
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