Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a Uri stored in a System.Uri class which contains a query string.

If I use Uri.Query the result is ?workarea=Airconaire+Ltd

What I need is to be able to extract the Uri variables so that I can Urlencode Airconaire+Ltd to get Airconaire%2bLtd? I realise that I could use regular expressions to parse this out - but is there not a more elegant way? Using System.Uri possibly?

Edit:

I've checked out the HttpUtility.ParseQuery class but it seems to decode Url encoded characters. How can I preserve all characters (theres meant to be a + in there) How can I prevent this?

share|improve this question
HttpUtility.UrlEncode? (System.Web) – The_Smallest Jan 5 '11 at 10:58
Possible duplicate of Get individual query parameters from Uri. Short answer: use HttpUtility.ParseQueryString(). – Frédéric Hamidi Jan 5 '11 at 10:58
Yep - but I can't Encode the whole ?workarea=Airconaire+Ltd just the Airconaire+Ltd – m.edmondson Jan 5 '11 at 10:59
possible duplicate of How to parse a query string into a NameValueCollection in .NET – Druid Aug 7 '12 at 10:44

1 Answer

up vote 1 down vote accepted

Check out this question.

-- Pavel

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.