In my web portal, for some users (not all), when they click to a link, the '&'
characters become '+'
.
For example, the link is :
www.mysite.com/test.jsp?param1=test1¶m2=test2
,
Then it becomes :
www.mysite.com/test.jsp?param1=test1+param2=test2
It only happens for a specific country (Brazil). My other portals with same code work correctly.
I thought to handle request with servlet and when I see "+"
replace with "&"
but it is not a proper solution I think..
Any idea ?