ASP HTMLEncode 方法
asp htmlencode 方法

htmlencode 方法對(duì)一段指定的字符串應(yīng)用 html 編碼。
語法
server.htmlencode(string)
參數(shù) | 描述 |
---|---|
string | 必需。要編碼的字符串。 |
實(shí)例
腳本:
<%
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:

相關(guān)文章
- ASP Global.asa
- ASP Server 對(duì)象
- 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 方法