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?
|
show 1 more comment
feedback
|
|
If that is an issue for you, try:
Instead. | ||||
|
feedback
|
|
You can use Uri.EscapeUriString (see http://msdn.microsoft.com/en-us/library/system.uri.escapeuristring.aspx) | |||||||||
feedback
|
|
Just for formatting I'm submitting this as an answer. Couldn't find any good examples comparing them so:
Outputs:
So 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. | |||
feedback
|
|
Here's an example of sending a POST request that properly encodes parameters using
| |||
|
feedback
|
|
There's a client profile usable version, System.Net.WebUtility class, present in client profile System.dll. Here's the MSDN Link: | |||||||||||
feedback
|
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