Click to See Complete Forum and Search --> : Plus Symbol in querystring


Gopinath
10-04-2003, 09:54 PM
I am passigng a querystring from javascript
the querystring is a XMLDOM like
<grade> A++ </grade>
<maxi>100.00</maxi>
<mini>90.00</mini>
<grade>A</grade>
<maxi>90.00</maxi>
<mini>80.00</mini>
<grade>A--</grade>
<maxi>100.00</maxi>
<mini>90.00</mini>
I am getting the querystring from ASP page and display the value.
what my actual problem is, When i displaying 'A++' it shows only 'A'. I think, we have to handle the '+' symbol. I tried with 'escape' function.But no solution.
If anyone knows, pls help me immediately

Thanq guys
-Gopi

Jeff Mott
10-04-2003, 11:34 PM
The problem may be in either the encoding or decoding of the query string. We can't tell which or identify the specific cause unless we can see the code for each.

Fang
10-05-2003, 01:42 AM
Try entity codes: <grade> A&#_43; &#_43; </grade> (remove underscore)