html转义字符&30340;&26696;如何用C#来转义

html转义字符怎么用C#来转义?rt偶遇到读取页面后里面的中文字符全是xml转义字符。请好心人帮帮忙,谢谢~![解

html转义字符的案怎么用C#来转义?
rt

偶遇到读取页面后里面的中文字符全是xml转义字符。

请好心人帮帮忙,谢谢~!

[解决办法]
try

string test = Server.HtmlDecode( "的案 ");
Response.Write(test);
[解决办法]
or

string test = System.Web.HttpUtility.HtmlDecode( "的案 ");
Response.Write(test);