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
sudhIr NarayansudhIr Narayan 

Add Hyper Link to Visualforce Page

Hi,

   There are two visualforce pages CS_Home and CS_Product.  I want to set a hyper link from CS_Home to CS_Product Page. 

   Please suggest me how to set hyper link between visualforce page.


Thanks

Sudhir

Best Answer chosen by sudhIr Narayan
logontokartiklogontokartik
<apex:outputLink value="/apex/CS_Product" id="theLink">CS Product</apex:outputLink>
You can use <apex:outputLink> tag as above. 

http://www.salesforce.com/us/developer/docs/pages/Content/pages_compref_outputLink.htm

Thank you

All Answers

logontokartiklogontokartik
<apex:outputLink value="/apex/CS_Product" id="theLink">CS Product</apex:outputLink>
You can use <apex:outputLink> tag as above. 

http://www.salesforce.com/us/developer/docs/pages/Content/pages_compref_outputLink.htm

Thank you

This was selected as the best answer
sudhIr NarayansudhIr Narayan

Hi Karthic,
  
   Thank You Very Much it worked. I have anothe problem I have added CS_Home page inside site to access it in public link. 
 
   When I click the link it is not going. But it works when I run visualfore page. Please suggest me how to fix this issue

Thanks

Sudhir