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
Venkata Sravan Kumar BandariVenkata Sravan Kumar Bandari 

how to send values from one VF page to another using pagereference object

Best Answer chosen by Venkata Sravan Kumar Bandari
MikeGillMikeGill
Use the same controller across multiple pages - Check the Visualforce Developers Guide - Creating a Wizard for details

Another common way is to pass url parameters. Set these on the PageReference object, then read them on the new Page when the controller gets instantiate

http://www.forcetree.com/2009/06/passing-parameters-to-visualforce-page.html


All Answers

MikeGillMikeGill
Use the same controller across multiple pages - Check the Visualforce Developers Guide - Creating a Wizard for details

Another common way is to pass url parameters. Set these on the PageReference object, then read them on the new Page when the controller gets instantiate

http://www.forcetree.com/2009/06/passing-parameters-to-visualforce-page.html


This was selected as the best answer
Venkata Sravan Kumar BandariVenkata Sravan Kumar Bandari
Thank u sooo much....:-)
MikeGillMikeGill
Thanks Venkata