<Pełna Server Object Reference
Metoda HtmlEncode stosuje kodowanie HTML do określonego łańcucha.
Składnia
Server.HTMLEncode(string)
Parametr | Opis |
---|---|
string | Wymagany. Łańcuch do zakodowania |
Przykład
The following script:
<%
response.write(Server.HTMLEncode("The image tag: <img>"))
%>
Output:
The image tag: <img>
Web browser output:
The image tag: <img>
<Pełna Server Object Reference