Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I know there are different methods in the System.Web namespace for decoding html entities (such as "%20" for space). I'm building a Winforms application however, but needs to deal with html encoded strings. Basically I have the iTunes Library XML file and need to decode the URLs in there to check the files.

Is this possible without the System.Web namespace?

share|improve this question
Why would you not use the System.Web namespace? – AnthonyWJones Apr 2 '09 at 21:21
4  
This is relevant if you want to use the client only subset of the framework, +1. – Cookey Nov 28 '09 at 20:36
@Cookey see bizon's answer, definitely the best one. – BrainSlugs83 May 24 '12 at 5:55

6 Answers

up vote 20 down vote accepted

Just because you're writing a Windows Forms app doesn't stop you from using System.Web. Just add a reference to System.Web.dll.

share|improve this answer
I have tripped on this before. I forgot the reference, thought a "using" would do. Thanks! – miccet Apr 3 '09 at 6:07
8  
The issue with that is that you can't use the .NET 3.5 Client profile with your .NET app so your XP users can avoid the 150mb download and go for the smaller 28mb one. Best to avoid the System.Web namespace if you can. – Zac Bowling Jan 28 '10 at 5:25
2  
I second that, It´s silly a subset of these methods couldn't be provided in a seperate assembly available for the client profile installation.. i find myself quite often needing them in simple client apps. – Almund Dec 18 '10 at 22:53
3  
@Almund: Check my answer. They did it. – bizon Jan 3 '12 at 14:56
2  
@bizon: Yes I know. They do learn :) – Almund Jan 9 '12 at 12:48

Developers who need to use System.Web.HttpUtility in their client apps and had to reference System.Web.dll and therefore target NET4 full (System.Web.dll is in Full) , can now target the NET4 Client Profile by using the new System.Net.WebUtility class which is in System.dll (System.dll is in NET4 Client Profile). System.Net.WebUtility includes HtmlEncode and HtmlDecode. Url encoding can be accomplished using the System.Uri class (also in System.dll).

From http://blogs.msdn.com/b/jgoldb/archive/2010/04/12/what-s-new-in-net-framework-4-client-profile-rtm.aspx

share|improve this answer
2  
This is the best answer. Thanks bizon! – BrainSlugs83 May 24 '12 at 5:54

See this article if you're still curious how to do this without System.Web. It offers a solution for URI decoding (which is really what you're decoding, not HTML entities which are something like "&emdash;" )

share|improve this answer
Thanks Steve, this was exactly what I was looking for +1 – Si. Aug 25 '09 at 2:12

You can use System.Net.WebUtility.HtmlDecode:

Converts a string that has been HTML-encoded for HTTP transmission into a decoded string.

share|improve this answer

To use the methods that are in the .NET framework you must use the System.Web namespace to get the HtmlDecode method.

Yes, you could write your own method to do it, but that wouldn't make a lot of sense.

Just add the reference to system.web.

share|improve this answer

You can use HttpUtility.UrlDecode or HttpUtility.HtmlDecode

share|improve this answer
3  
Since the question was how to do this Without the System.Web assembly I´m afraid this isn't much help.. – Almund Dec 18 '10 at 22:54

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.