Am setting a cookie
like below, in one jsp page.
document.cookie = cookieName + "=" + escape("#{myBean.cookieValue}");
And am retrieving cookie
value in my target jsp page using request.getCookies();
.
Am getting the value of cookie in my target jsp page. But, the value being set in the cookie contains space
like 31st July 2012
. So, when I print this cookie value in my target JSP page, am getting 31st%20July%202012
.
In my target JSP page I just want to show the exact initial value like 31st July 2012
.
How can I achieve this?