bhavesh7098
Registered:1454962548 Posts: 56
Posted 1475085803
Reply with quote
#1
Hi, I have a requirement where user click on field value on show record page then its open in our different website where User can see all the information for that Particular Project. so URL like e.g. Website+ProjectId e.g. https://www.google.com/123456 = "<a href=' " + WebSite + " ' + ' " + ProjectID+ " 'target='_blank'>" +ProjectID+ "</a>" I have done above thing so far, but i dont see the "projectID" attached with URL.its just open the " https://www.google.com/" page , but what i want is "https://www.google.com/123456". I know that i am doing some mistake in concatenation for ' " + WebSite + " ' + ' " + ProjectID+ " ' . I need to know that i can concatenate the website with ProjectID.
JimiJ
MVP Developer
Registered:1112254853 Posts: 1,958
Posted 1475115684
Reply with quote
#2
This must be the right one:= "<a href=' " + WebSite + "/" + ProjectID + "' target='_blank'>" + WebSite + "/" + ProjectID + "</a>"Cheers, Jimi J
__________________ Jaime Jegonia
Iron Speed MVP Developer ". . . and whoever sows generously will also reap generously" 2 Cor 9:6
bhavesh7098
Registered:1454962548 Posts: 56
Posted 1475169574
Reply with quote
#3
Thanks Jim!
JimiJ
MVP Developer
Registered:1112254853 Posts: 1,958
Posted 1475412749
Reply with quote
#4
My pleasure!
__________________ Jaime Jegonia
Iron Speed MVP Developer ". . . and whoever sows generously will also reap generously" 2 Cor 9:6