Hi,normally I would just use:
HttpContext.Current.Server.UrlEncode("url");
But since this is a console application, HttpContext.Current is always going to be null.
Is there another method that does the same thing that I could use?
|
|
|
|
|
|
|
I'm not a .NET guy, but, can't you use: HttpUtility.UrlEncode Method (String) Which is described here: http://msdn.microsoft.com/en-us/library/4fkewx0t.aspx Andrew |
||||||||
|
|
|
Try using the UrlEncode method in the HttpUtility class. |
||
|
|
|
|
HttpUtility.UrlEncode("url") in System.Web. |
||
|
|
|
|
use the static HttpUtility.UrlEncode method. |
||
|
|
|
|
You'll want to use System.Web.HttpUtility.urlencode("url") Make sure you have system.web as one of the references in your project. I don't think it's included as a reference by default in console applications. |
||
|
|
|
|
I ran into this problem myself, and rather than add the System.Web assembly to my project, I wrote a class for encoding/decoding URLs (its pretty simple, and I've done some testing, but not a lot). I've included the source code below. Please: leave the comment at the top if you reuse this, don't blame me if it breaks, learn from the code.
|
||
|
|
|
|
Kibbee offers the real answer. Yes, HttpUtility.UrlEncode is the right method to use, but it will not be available by default for a console application. You must add a reference to System.Web. To do that,
NOW you can use the UrlEncode method. You'll still want to add, using System.Web at the top of your console app or use the full namespace when calling the method, System.Web.HttpUtility.UrlEncode(someString) |
||
|
|