答案:这个比较简单
//HTML进行编码和解码
Console.WriteLine(System.Web.HttpUtility.HtmlEncode("<h1>我是中文字符!</h1>"));
Console.WriteLine(System.Web.HttpUtility.HtmlDecode("<h1>我是中文字符!</h1>"));
如何对HTML进行编码和解码?
时间: 2024-10-17 07:08:03
答案:这个比较简单
//HTML进行编码和解码
Console.WriteLine(System.Web.HttpUtility.HtmlEncode("<h1>我是中文字符!</h1>"));
Console.WriteLine(System.Web.HttpUtility.HtmlDecode("<h1>我是中文字符!</h1>"));
如何对HTML进行编码和解码?