What is Server.HtmlEncode()?

本文关键字:HtmlEncode is Server What | 更新日期: 2023-09-27 18:11:32

使用和不使用Server.HtmlDecode()有什么区别?

例如:

txtLocation.Text = Server.HtmlDecode(awardShowYear.ShowLocation);
txtLocation.Text = awardShowYear.ShowLocation;

这两行代码的区别是什么?

What is Server.HtmlEncode()?

第一条:

txtLocation.Text = Server.HtmlDecode(awardShowYear.ShowLocation);

将从字符串中删除任何html编码,并将解码结果分配给txtLocation.Text。

第二个:

txtLocation.Text = awardShowYear.ShowLocation;

将简单地将字符串分配给txtLocation。文本,保留现有的任何HTML编码。

看到HttpServerUtility。HtmlDecode Method (String)