ASP HTMLEncode 方法
asp htmlencode 方法
完整的 server 对象参考手册htmlencode 方法对一段指定的字符串应用 html 编码。
语法
server.htmlencode(string)
参数 | 描述 |
---|---|
string | 必需。要编码的字符串。 |
实例
脚本:
<%
response.write(server.htmlencode("the image tag: "))
%>
输出:
the image tag: <img>
web 浏览器输出:
the image tag:
<%
response.write(server.htmlencode("the image tag: "))
%>
输出:
the image tag: <img>
web 浏览器输出:
the image tag:
完整的 server 对象参考手册
相关文章
- ASP Global.asa
- ASP Server 对象
- ASP ADO
- ASP AtEndOfStream 属性
- ASP Close 方法
- ASP ReadLine 方法
- ASP DateCreated 属性
- ASP Path 属性
- ASP Copy 方法
- ASP CreateTextFile 方法
- ASP Item 属性
- ASP ContentType 属性
- ASP Expires 属性
- ASP Clear 方法
- ASP End 方法
- ASP BinaryRead 方法
- ASP Lock 和 Unlock 方法
- ASP Execute 方法
- ASP Drives 属性
- ASP GetDrive 方法