<完全なサーバオブジェクトリファレンス
HTMLEncodeメソッドは、指定された文字列にHTMLエンコードを適用します。
構文
Server.HTMLEncode(string)
パラメーター | 説明 |
---|---|
string | 必須。 エンコードする文字列 |
例
The following script:
<%
response.write(Server.HTMLEncode("The image tag: <img>"))
%>
Output:
The image tag: <img>
Web browser output:
The image tag: <img>
<完全なサーバオブジェクトリファレンス