hi,
i have a String S="hell(“two”)" ;
two is not surrounded with double quotes its with “two”.
i have set this string in request
[code=java]
request.setAttr ibute("Descript ion",S);
[/code]
from my jsp i called i tried to print S
it should print me hell(“two”)
but its printing
hell(?two?)
two is surrounded with ?
pls sort my problem out
Raj
i have a String S="hell(“two”)" ;
two is not surrounded with double quotes its with “two”.
i have set this string in request
[code=java]
request.setAttr ibute("Descript ion",S);
[/code]
from my jsp i called i tried to print S
Code:
<% out.print(request.getAttribute("Description")); %>
but its printing
hell(?two?)
two is surrounded with ?
pls sort my problem out
Raj
Comment