最新的Web开发教程
 

ASP的HTMLEncode方法


<完整服务器对象参考

所述的HTMLEncode方法适用HTML编码来指定的字符串。

句法

Server.HTMLEncode(string)

参数 描述
string 需要。 要编码的字符串

The following script:

<%
response.write(Server.HTMLEncode("The image tag: <img>"))
%>

Output:

The image tag: &lt;img&gt;

Web browser output:

The image tag: <img>

<完整服务器对象参考