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
admin sureshadmin suresh 

How to get current page data in the next page without save it into database?

if can use apexpages.currentpage.getparameter.get(id) and retrive data using SOQl get all data in next page. but without retriving database how can we do? i thinnk it is possible with custom setting also

Is it possible with global variable $currentpage or any other? if yes give me example
Suneel#8Suneel#8
Passing variables to next page is possible through arguments.but not data retrieved through SOQL I guess.Custom settings is used to store Static Data not the dynamic data retrieved through SOQL.Can you explain the need or scenario.We can find a workaround
admin sureshadmin suresh
Hi Suneel,

My requirement is that i have a wizard of 3 pages. what ever the values entered in 1st page is automatically populated on second and third page. how we can do this?
Suneel#8Suneel#8
If three pages are related, try using the same controller for all the three pages so that they can share the data among themselves
Suneel#8Suneel#8
Check out Chapter 5—Building Wizards With Visualforce in http://www.developerforce.com/guides/Visualforce_in_Practice.pdf. It deals with same usecase as yours