Server 对象参考手册
HTMLEncode 方法对一段指定的字符串应用 HTML 编码。
Server.HTMLEncode(string)
脚本:
<% response.write(Server.HTMLEncode("The image tag: <img>")) %>
输出:
The image tag: <img>
浏览器的输出:
The image tag: <img>
Search: