views:

60

answers:

1

In .NET if I do something like:

string temp = Request.QueryString["myKey"];

is the value in temp already URL decoded?

+4  A: 

Yes, it is.

AlbertEin