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.

My question is regarding passing an URL to HttpWebRequest without escaping, I searched the forums and internet, but I didn't find a good solution for it.

I have following URL:string URL= www.website.com/sub/redirec\t\bs\dd

So when I create an uri like this:

Uri uri = new Uri(URL);
HttpWebRequest request = (HttpWebRequest) WebRequest.Create(uri);

In this case on a get method I will get following URL:www.website.com/sub/redirect%5Ct%5Cbc%5Cdd

This sign "\" will be replaced by "%5C". What is crucial for me not to happen?

I can avoid that by:

Uri uri = new Uri(URL, true); //bool dontEscape

But this constructor is obsolete. How to have same effect without using obsolete?

share|improve this question

1 Answer

up vote 1 down vote accepted

use this

Uri uri = new Uri(Uri.EscapeUriString(URL)); 
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.