up vote 7 down vote favorite
3
share [g+] share [fb]

Is there any way to html encode some text without using System.Web.HttpUtility.HtmlEncode method? I want to deploy my desktop application using .NET 3.5 Client Profile and the problem is that System.Web.dll it's not part of the .NET 3.5 Client Profile so I have to find an workaround.

link|improve this question

5  
Twenty questions, zero accepted? – Bob Kaufman Oct 27 '09 at 16:00
Apparently he's not very accepting. :) – John Kraft Oct 27 '09 at 16:33
2  
Sorry guys. I did not give much importance to answer questions. Check me now :). Lesson learned. – Cornel Oct 27 '09 at 21:21
feedback

4 Answers

up vote 5 down vote accepted

Rick Strahl rolled his own encoding method, due to problems and inconsistencies with .NET's way of encoding things. Check out his post on Html and Uri String Encoding without System.Web.

UPDATE: After checking out the links provided by the other answers, the AntiXSS library provided by Microsoft seems like an ideal solution to this problem. They've made the source of AntiXSS 3.1 available on Codeplex: http://antixss.codeplex.com/

You can also get the official Microsoft release, including sample applications and documentation, here: http://www.microsoft.com/downloads/details.aspx?FamilyId=051ee83c-5ccf-48ed-8463-02f56a6bfc09&displaylang=en

The AntiXSS Library includes helpful methods for encoding HTML, URLs, JavaScript, and XML. It's based on a secure whitelist model, so anything not allowed in the specifications is prohibited.

It looks like just the right thing to solve this problem.

link|improve this answer
feedback

I'm a fan of the AntiXSS library as well, but its worth mentioning that .net v4 includes a new utility class for encoding in System.dll. So if you have the option of moving to .net v4, you can use the client profile.

System.Net.WebUtility.HtmlEncode

link|improve this answer
feedback

Can you include this? It has an alternative Encode method.

link|improve this answer
feedback

You could look at AntiXSS. It has it's own encoding mechanisms and is meant to be a replacement for the framework's HtmlEncode.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.