You need to sign in to do that
Don't have an account?
rohitsfdc
How to pass query string from one vf page to another in salesforce sites??
i have a sf site where i calculate a variable. and i want this variable to be displayed in another page in the same salesforce site. how to do that??
You can pass this variable as query parameter with url, for example :
https://abc.com?temp=123
and can access in redirected page with help of ApexPages.currentPage().getParameters().get('temp'); method.
Hope this helps.
I think your requirement is value get from URL and have to be pass value to URL from controller
Simple sample done check whether you met the requirement
-Suresh