最新的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>

<完整服務器對象參考