<Complete Object Reference Server
La méthode HTMLEncode applique le codage HTML à une chaîne spécifiée.
Syntaxe
Server.HTMLEncode(string)
Paramètre | La description |
---|---|
string | Champs obligatoires. La chaîne à coder |
Exemple
The following script:
<%
response.write(Server.HTMLEncode("The image tag: <img>"))
%>
Output:
The image tag: <img>
Web browser output:
The image tag: <img>
<Complete Object Reference Server