S
S. Han
When I type in "my.aspx?Detail=Factory+Entry" in IE browser, and retrieve
the query string with the following code:
string val = Request.QueryString["Detail"];
the returned val is not "Factory+Entry", but "Factory Entry" with a space.
Why does QueryString[] converts the '+' character to a space?
Is there a way to suppress the translation from a '+' to a space?
the query string with the following code:
string val = Request.QueryString["Detail"];
the returned val is not "Factory+Entry", but "Factory Entry" with a space.
Why does QueryString[] converts the '+' character to a space?
Is there a way to suppress the translation from a '+' to a space?