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

<完全なサーバオブジェクトリファレンス