You need to sign in to do that
Don't have an account?

pass parameters between visual forcepages
while i am trying to pass parameters between pages the value being passed is visible in the url,how to hide or mask it in the url...can any body help....
You can use javascript;
//PARENT
function callChildWindow(){
if(myChildWindow==null){
myChildWindow = window.open("myPageUrl.html",null);
}
myChildWindow.useParameters(param1, param2 , ..... paramn)
}
//CHILD
function useParameters(param1, param2 , ..... paramn){
//user parameters with apex:inputHidden fields
}
If you don't want to use javascript and want to mask the parameter you can use Crypto Class to encrypt the parameter
Hope this helps.
Andres