377
Views
2
Comments
Solved
External URL is not working
Question

Hello,

On link, I am directing to Extern URL. I have provided URL of database value. However when I click on link, it's taking Server name + application Name + URL.

It should only redirect to URL. Please advice why this is taking server name + application name.

Thanks and Regards,

Suraj Borade

2019-09-30 07-35-56
Aurelio Junior
Solution

Hi Suraj,

You have to make sure your URL starts with "https://". Otherwise, the platform automatically adds the server and application name to the URL. You could use an expression similar to this in your link's URL:

If(Index(Url, "https://") = -1, "https://" + Url, Url)
UserImage.jpg
Lalitha Jeyakumar

Thanks for the information. i also had same issue. now its fixed

Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.