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
john8407john8407 

Open outputLink in new window

How can I have this open in a new window?

 

 <apex:outputLink value="../{!p.Id}" > {!p.Name} </apex:outputLink>

Best Answer chosen by Admin (Salesforce Developers) 
aballardaballard

Add target="_blank"  attribute

All Answers

aballardaballard

Add target="_blank"  attribute

This was selected as the best answer
john8407john8407

Thank you aballard....That worked.