2010-11-15 53 views

回答

1

你可以看看的HtmlDecodeHtmlEncode方法:

class Program 
{ 
    static void Main() 
    { 
     var s = HttpUtility.HtmlDecode("É"); 
     s = HttpUtility.HtmlEncode(s); 
     Console.WriteLine(s); // prints É 
    } 
} 
+0

就像一個魅力。謝謝。 – 2010-11-16 07:23:59

相關問題