function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Meredith Mitchell 8Meredith Mitchell 8 

hyperlink visualforce page tab

Hi there,

Can someone guide me on creating a visualforce page for a hyperlink?  I am trying to create a tab that redirects to this link

https://support.coresecurity.com

New to VF so any help would be appreciated! 
Best Answer chosen by Meredith Mitchell 8
v varaprasadv varaprasad
Hi Meredith,

Check sample code below : 
 
<apex:page  >  
    <apex:form >
        <apex:pageBlock title="coresecurity info">
            <!-- you can use any one -->
            <apex:commandLink value="coresecurity" action="https://support.coresecurity.com"/> <br/>
            <a href="https://support.coresecurity.com">coresecurity</a>
        </apex:pageBlock>
    </apex:form>
</apex:page>

Hope this helps you!



Thanks
Varaprasad
@For Support: varaprasad4sfdc@gmail.com
 

All Answers

v varaprasadv varaprasad
Hi Meredith,

Check sample code below : 
 
<apex:page  >  
    <apex:form >
        <apex:pageBlock title="coresecurity info">
            <!-- you can use any one -->
            <apex:commandLink value="coresecurity" action="https://support.coresecurity.com"/> <br/>
            <a href="https://support.coresecurity.com">coresecurity</a>
        </apex:pageBlock>
    </apex:form>
</apex:page>

Hope this helps you!



Thanks
Varaprasad
@For Support: varaprasad4sfdc@gmail.com
 
This was selected as the best answer
Meredith Mitchell 8Meredith Mitchell 8
This is perfect. THANK YOU!