Answered by:
Adding a URL to a value

Question
-
i have a column called contact id and i am trying to add a url to the value, so that it opens up a page of contact details when clicked on. so i clicked on the properties and clicked on the navigation and copied the URL that i was trying to get.
for a particular contact the url is
http://abcd.ccd/books.contID=1002
i copied till the = sign and pasted but when i click on the value it is not taking me to the corresponding page. what do i have to do ??please someone help me
msmustard
Tuesday, February 14, 2012 4:53 PM
Answers
-
Hi,
If you have contactid field in dataset then try below in jump to url try following,
="http:/abcd/zzzz=" + Fields!ContactID.value
Regards,
Asim Bagwan
Kindly mark the replies as Answers if they help!
- Proposed as answer by Eileen Zhao Thursday, February 16, 2012 7:03 AM
- Marked as answer by Eileen Zhao Tuesday, February 21, 2012 11:57 AM
Wednesday, February 15, 2012 10:32 AM
All replies
-
Hi msmustard,
Check below SSRS Sample
Regards
Tuesday, February 14, 2012 5:18 PM -
Thanks for the reply Olivia, It does not explain.. this is exactly what it mentions, like i have pasted the URL in jump to URL but the value contact id ? How will each value take me to the corresponding page ??? Please someone help me
msmustard
Tuesday, February 14, 2012 5:34 PM -
I'm not sure if i clearly understood your question.
Is your target page a SSRS reprot?
If yes, you can create a drillthrough report. See the below example.
http://tinyurl.com/842pw9c
If no, you should know the URL syntax of the target. For example, the following is a valid URL for a wiki page for city Denver.
http://en.wikipedia.org/wiki/Denver
You should build URL based of this. In the actions, i've created the below expression
="http://en.wikipedia.org/wiki/"+ReportItems!Textbox1.Value
At run time ReportItems!Textbox1.Value will be evaluated to the cell a user clicks. In your case this will be ContactID.
I hope this explains a few things.- Proposed as answer by Samuel Vanga Monday, February 20, 2012 3:25 PM
Tuesday, February 14, 2012 6:22 PM -
No its not a ssrs page , hence i entered the target URL in jump to URL in navigation. i entered the systax like
the original syntax is
http://abcdd/zzz=1002 for one particular contact id , hence i entered
http://abcdd/zzz= thinking when i click on the contact id number it will take me to the corresponding page of the number but it is taking me to the url
http://abcdd/zzz= but not http://abcdd/zzz=1002
Itried what you mentioned like = "http://abcdd/zzz"+fields!contactId.value but its still not taking me to the page of the corresponding ID
msmustard
Tuesday, February 14, 2012 6:36 PM -
-
it is opening the page as i entered a url
http:/abcd/zzzz= so it is taking me to this page. i want it to take me to the page of the correspond contact id.
the url for one contact id is http:/abcd/zzzz=1001 and like so on for all the contact id's.
i want to click on the contact id and it should take me to the contact page that is there.
we have a company site where it has details like contact name and contact details.
msmustard
Tuesday, February 14, 2012 7:56 PM -
i went to navigation and pasted the url in jump to url tab http:/abcd/zzzz=
msmustard
Tuesday, February 14, 2012 7:59 PM -
Hi,
If you have contactid field in dataset then try below in jump to url try following,
="http:/abcd/zzzz=" + Fields!ContactID.value
Regards,
Asim Bagwan
Kindly mark the replies as Answers if they help!
- Proposed as answer by Eileen Zhao Thursday, February 16, 2012 7:03 AM
- Marked as answer by Eileen Zhao Tuesday, February 21, 2012 11:57 AM
Wednesday, February 15, 2012 10:32 AM