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
Lee FBLee FB 

How to call one visualforce page?

Hi guys
I'm new to Visualforce development.I'm trying to creating a link so that when a user clicks a text (bachtuoc (https://bachtuoc.tv/)), it opens a pop-window that opens a new visualforce page. Appreciate any help.
ANUTEJANUTEJ (Salesforce Developers) 
Hi Lee,

Is it that you would like to open  the visualforce page in a new window if that is the case then you can check the below implementations:

>> https://salesforce.stackexchange.com/questions/17766/new-window-in-visual-force-page

>> https://developer.salesforce.com/forums/?id=906F0000000971NIAQ

If this is not the use-case can you elaborate the scenario so as to check further and respond back.

Let me know if it helps you and close your query by marking it as solved so that it can help others in the future.  

Thanks.
Akshay Dhiman 63Akshay Dhiman 63
Hi Lee,

According to your desire, I think you have to create a formula field for that and then select a return type as the text and 
then write in next screen below link

HYPERLINK("/apex/VFPAGE_Name_here", "https://bachtuoc.tv/", "_blank")

and save the field.

Hope this explanation will resolve your query. Mark it as the best answer if you find it helpful.
Thanks