Hello,
We are facing problem when we have '&' in our query
string. For example
http://somehost/somepage.jsp?key1=value1&key2=A&B.
Here key2 value is A&B but because & is a separator for query string, we only get A as value.
We cannot really use POST here because this is a hyperlink and not a form submit.
How can I fix this so that I can correctly get values in the target page of hyperlink on server side (somepage.jsp).
-Regards
Atul