ASP Server.HTMLEncode() - Application Object HTML-encodes a string and returns the encoded string.
ShotDev Focus:
- The text string to encode.
Example
asp_server_htmlencode.asp
<% Option Explicit %> <html> <head> <title>ShotDev.Com Tutorial</title> </head> <body> <% Response.write("Welcome To <b>ShotDev.Com</b>") Response.write("<br>") Response.write(Server.HTMLEncode("Welcome To <b>ShotDev.Com</b>")) %> </body> </html>
Create a asp file and save to path root-path/myasp/
Run
http://localhost/myasp/asp_server_htmlencode.asp
Screenshot