i success encode & decode the url parameter but how can i get the parameter after decode?? the reason i encode all query strings into a parameter just to prevent user change the parameter on the address bar.
For example
Page A
function fnlink()
{
param1 = encodeURIComponent("INSCODE=91&NAME=LEE&EMAIL=abc");
url = "/home/test/test2.jsp?"+param1;
location.href= url;
}
Page B
url : http://localhost:9080/home/test/test2.jsp?INSCODE%3D91%26NAME%3DLEE%26EMAIL%3Dabc