Reputation: 29664
In .NET if I do something like:
string temp = Request.QueryString["myKey"];
is the value in temp already URL decoded?
Upvotes: 1
Views: 96
Reputation: 27150
Yes, it is.
Upvotes: 4