ASP HTMLEncode 方法
❮ 服务器对象完整参考
HTMLEncode 方法对指定的字符串应用 HTML 编码。
语法
Server.HTMLEncode(string)
参数 | 描述 |
---|---|
string | 必需。要编码的字符串。 |
示例
以下脚本
<%
response.write(Server.HTMLEncode("The image tag: <img>"))
%>
输出
The image tag: <img>
Web 浏览器输出
The image tag: <img>
❮ 服务器对象完整参考