Najnowsze tutoriale tworzenie stron internetowych
 

ASP Metoda HtmlEncode


<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: &lt;img&gt;

Web browser output:

The image tag: <img>

<Pełna Server Object Reference