views:

490

answers:

1

So since System.Web & HttpContext isn't available in Silverlight is there a way to do HtmlDecode & HtmlEncode inside a Silverlight app without some horrendous Regex?

+5  A: 

System.Windows.Browser has an HttpUtility class with HtmlEncode and HtmlDecode methods.

Rex M