<Completa Server Object Reference
O método HTMLEncode aplica-se a codificação HTML para uma cadeia especificada.
Sintaxe
Server.HTMLEncode(string)
Parâmetro | Descrição |
---|---|
string | Requeridos. A seqüência de caracteres para codificar |
Exemplo
The following script:
<%
response.write(Server.HTMLEncode("The image tag: <img>"))
%>
Output:
The image tag: <img>
Web browser output:
The image tag: <img>
<Completa Server Object Reference