<Complete Reference Server Object
Metoda HTMLEncode aplică codare HTML la un șir de caractere specificat.
Sintaxă
Server.HTMLEncode(string)
Parametru | Descriere |
---|---|
string | Necesar. Șirul de a codifica |
Exemplu
The following script:
<%
response.write(Server.HTMLEncode("The image tag: <img>"))
%>
Output:
The image tag: <img>
Web browser output:
The image tag: <img>
<Complete Reference Server Object