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
ABRAR-UL-HAQABRAR-UL-HAQ 

Page Navigation Methods:Transfer Data From one page to another page.

 

Page Navigation Methods:
For a VisualForce Page:
PageReference pageRef = Page.VFPageName
For a SalesForce(Possibly non-VisualForce) Page:
PageReference pageRef = new PageReference('partialURL')
For a non-Salesforce Website:
PageReference pageRef = new PageReference('fullURL')

Page Navigation Methods:
For a VisualForce Page:PageReference pageRef = Page.VFPageName
For a SalesForce(Possibly non-VisualForce) Page:PageReference pageRef = new PageReference('partialURL')
partialURL = https://salesforceserver.salesforce.com
For a non-Salesforce Website:PageReference pageRef = new PageReference('fullURL')

 

bob_buzzardbob_buzzard

This post appears to be missing detail on what you are trying to achieve.

 

If you want to send the user to a new page but retain some of the data, you will need to add it to the url or get the page parameters map and put the name/value pair into it.