actually I use h:link with h:param to pass parameters from one page to another.
The problem is that so the parameters come in the url too and in some cases I don’t want it (the page should not be bookmarkable).
How can I do? What should I use?
Thank you in advance
Francesco
You can use an
h:commandLinkinstead ofh:link. Your page invocation will be done through aPOSTcommand instead of aGETcommand. Hence, parameter will not show up in URL.Here’s is an example I got from here: