I am trying to write a windows client application that calls a web site for data. To keep the install to a minimum I am trying only use dlls in the .NET Framework Client Profile. Trouble is that I need to UrlEncode some parameters, is there an easy way to do this without importing System.Web.dll which is not part of the Client Pofile?
|
If that is an issue for you, try:
Instead. Here is a SO question answer that explains the difference: what's the difference between EscapeUriString and EscapeDataString |
|||||
|
|
You can use Uri.EscapeUriString (see http://msdn.microsoft.com/en-us/library/system.uri.escapeuristring.aspx) |
|||||||||
|
|
Just for formatting I'm submitting this as an answer. Couldn't find any good examples comparing them so:
Outputs:
So Line Breaks
All of them listed here other than Please feel free to edit this and add new characters to my test string, or leave them in the comments and I'll edit it. |
|||||
|
|
Here's an example of sending a POST request that properly encodes parameters using
|
|||
|
|
|
There's a client profile usable version, System.Net.WebUtility class, present in client profile System.dll. Here's the MSDN Link: |
|||||||||||||
|
WebRequestorWebClient. That's the reason I asked about this particular code because there are things that can be done about properly url encoding data. – Darin Dimitrov Oct 1 '10 at 16:06