I have html file and it has some labels.when i usually get the values through request parameters appended to URL. when i display the values in an html they will be dispalyed with ASCII chars as below. am getting values with %20 from my URL itself. And am reading them in servlet and forward to some.jsp
Name=Hellow%20how%20are%20you
But i want out put as:
Name=Hello how are you
Do i need to do anything in my html to render the value without ASCII ?
Thanks!