vote up 0 vote down star

How do i escape text for html use in C#? I want to do

sample="<span>blah<span>"

and have

<span>blah<span>

show up as plain text instead of blah only with the tags part of the html :(. Using C# not ASP

flag

39% accept rate

2 Answers

vote up 3 vote down check
using System.Web;

var encoded = HttpUtility.HtmlEncode(unencoded);
link|flag
Perfect, works as i expected. – acidzombie24 Jun 17 at 5:38
If you also want to encode unicode characters to non-unicode, check out this: stackoverflow.com/questions/82008/… – Gyuri Dec 4 at 18:14
vote up 0 vote down

You can use actual html tags <xmp> and </xmp> to output the string as is to show all of the tags in between the xmp tags.

Or you can also use on the server Server.UrlEncode or HttpUtility.HtmlEncode.

link|flag
I made the question more clear. I dont want the tags to be part of html as the user can do </pre> and break it. – acidzombie24 Jun 17 at 5:36
+1 for promoting the infamous xmp tag – Ron Klein Jun 17 at 5:53

Your Answer

Get an OpenID
or

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