Esteban Araya
Esteban Araya

Reputation: 29664

If I grab a paramenter out of the query string, is it URL decoded?

In .NET if I do something like:

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

is the value in temp already URL decoded?

Upvotes: 1

Views: 96

Answers (1)

albertein
albertein

Reputation: 27150

Yes, it is.

Upvotes: 4

Related Questions