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

.Net's Server.HTMLEncode() is the very helpful function that takes an HTML string and replaces special characters with their entity equivalents - "<" becomes &lt ; and so forth.

Is there a (built-in) function that does the reverse? There doesn't seem to be, and I am incredulous. While I could certainly write my own (and have in the past) Server.HTMLEncode has all kinds of cool handling for different string encodings and high-level unicode characters that I would really not have crash my hand-rolled decoder in a year's time.

What do other people do when they need the plain HTML back?

Update: To answer the first batch of questions, I present the MSDN article on the Server object, which has Encode but no Decode... I'm as amazed as anyone.

Update2: as several alert readers have pointed out, the docs I was looking at were for classic ASP, not ASP.Net. Thanks guys, that's an important MSDN safety tip.

share|improve this question
1  
The MSDN docs you linked are for (Classic) ASP - not ASP.NET. – Mark Brackett Jan 14 '09 at 18:25
AH-HA! And that's the last time I ask THAT coworker for document links. ;) – Electrons_Ahoy Jan 14 '09 at 20:26

5 Answers

up vote 3 down vote accepted

You're looking at the wrong docs. Check this out:

http://msdn.microsoft.com/en-us/library/system.web.httpserverutility_methods.aspx http://msdn.microsoft.com/en-us/library/system.web.httpserverutility.htmlencode.aspx http://msdn.microsoft.com/en-us/library/system.web.httpserverutility.htmldecode.aspx

share|improve this answer
Oh SNAP! There we go. Thank you very, very much. I KNEW that had to be in there somewhere. – Electrons_Ahoy Jan 14 '09 at 20:20

Server.HtmlDecode ....

share|improve this answer

You didn't see a HtmlDecode in the same place you found the HtmlEncode?

share|improve this answer

HttpServerUtility.HtmlDecode

share|improve this answer

Ah, MSDN, I love you.

There IS a Server.HTMLDecode() method, the documentation for the server object just doesn't mention that it exists.

Thanks, everybody!

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.