G
Guadala Harry
When passing the '#' character as part of a querstring value, the received
Querystring value gets truncated just prior to the '#' character.
Exmple:
string s = "someColor=#0000FF";
On the receiving side, a zero-length string is received.
string s = "someColor=TestThis#0000FF";
On the receiving side, only "TestThis" is received (the #0000FF has been
lost).
Just for fun, I used HTMLEncode() on this and it has no effect on the #
character (still drops it and everything that follows).
What can I do about this? I need to receive the # character and everything
that follows - via Querystring.
Thanks.
Querystring value gets truncated just prior to the '#' character.
Exmple:
string s = "someColor=#0000FF";
On the receiving side, a zero-length string is received.
string s = "someColor=TestThis#0000FF";
On the receiving side, only "TestThis" is received (the #0000FF has been
lost).
Just for fun, I used HTMLEncode() on this and it has no effect on the #
character (still drops it and everything that follows).
What can I do about this? I need to receive the # character and everything
that follows - via Querystring.
Thanks.