
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-28-2022 09:16 AM
Good afternoon,
We have a public page we're trying to use to display information and links to users who will never sign into our system. When I try to use a link in the html each type still require the public user to sign into the system. Is there anyway I can link on the public page to an external site without it requiring the user to sign into the system?
These are the links i'm trying:
<p>Blank<a href="www.Google.com" target="_blank">CLICK HERE</a></p>
<p>Self<a href="www.Google.com" target="_self">CLICK HERE</a></p>
<p>Parent<a href="www.Google.com" target="_parent">CLICK HERE</a></p>
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-28-2022 09:59 AM
Try below: use https:// instead of http
<p>Blank<a href="www.Google.com" target="_blank">CLICK HERE</a></p>
<p>Self<a href="www.Google.com" target="_self">CLICK HERE</a></p>
<p>Parent<a href="www.Google.com" target="_parent">CLICK HERE</a></p>
Raghav
MVP 2023
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-28-2022 09:59 AM
Try below: use https:// instead of http
<p>Blank<a href="www.Google.com" target="_blank">CLICK HERE</a></p>
<p>Self<a href="www.Google.com" target="_self">CLICK HERE</a></p>
<p>Parent<a href="www.Google.com" target="_parent">CLICK HERE</a></p>
Raghav
MVP 2023