ASP/VBScript Chr() Returns the character associated with the specified ANSI character code.
ShotDev Focus:
- Using Asp and Chr() function.
Example
asp_chr.asp
<% Option Explicit %> <html> <head> <title>ShotDev.Com Tutorial</title> </head> <body> <% Response.write Chr(97)&"<br>" Response.write Chr(98)&"<br>" Response.write Chr(99)&"<br>" Response.write Chr(100)&"<br>" Response.write Chr(101)&"<br>" %> </body> </html>
Create a asp file and save to path root-path/myasp/
Run
http://localhost/myasp/asp_abs.asp
Screenshot