How do i escape text for html use in C#? I want to do
sample=\"blah\"
and have
blah&l
Didn't see this here
System.Web.HttpUtility.JavaScriptStringEncode("Hello, this is Satan's Site")
it was the only thing that worked (asp 4.0+) when dealing with html like this. The' gets rendered as ' (using htmldecode) in the html, causing it to fail:
It's Allstars