I am using this:
document.location ='my different asp.net page?=myparams'
Is there a way to hide the values of the params in the URL displayed on the browser?
I know I could use hidden Form values and I know I can encrypt the values (which is what I will do if no joy here).
Is there a simpler tidier way of doing this? Perhaps via JQuery.
location.search = params
), but that'll show the parameter in the url bar. As far as I know, there's not really a way to "post" parameters. – Cerbrus Feb 5 '14 at 15:01