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
Priyanka DumkaPriyanka Dumka 

How to go from one vfp to another and displaying data from one to another ?

How to go from one visual force page  to another and displaying data from one to another  visual force page?
Best Answer chosen by Priyanka Dumka
VinayVinay (Salesforce Developers) 
Hi Priyanka,

Below is the sample reference to pass parameters from one page to another page.

Page1:
<apex:page>
    <apex:outputLink value="/apex/SecondPage">Click Here
    	<apex:param name="name" value="Biswajeet Samal"/>
    </apex:outputLink>
</apex:page>
Page2:
<apex:page controller="SecondPageController">
    Hello {!name}
</apex:page>
Page2 controller:
public class SecondPageController {
    public String name {get;set;}
    
    //Constructor
    public SecondPageController(){
        name = System.currentPageReference().getParameters().get('name');
    }
}

https://www.forcetalks.com/salesforce-topic/how-can-we-pass-parameter-from-one-vf-page-to-another-vf-page-in-Salesforce/

Please mark as Best Answer if above information was helpful.

Thanks,