VBScript Asc Function
Complete VBScript Reference
The Asc function converts the first letter in a string to ANSI code, and returns the result.
Syntax
| Parameter |
Description |
| string |
Required. A string
expression. Cannot be an empty string! |
Example 1
document.write(Asc("A") & "<br />")
document.write(Asc("F"))
Output:
65
70
|
Example 2
document.write(Asc("a") & "<br />")
document.write(Asc("f"))
Output:
97
102
|
Example 3
document.write(Asc("W") & "<br />")
document.write(Asc("W3Schools.com"))
Output:
87
87
|
Example 4
document.write(Asc("2") & "<br />")
document.write(Asc("#"))
Output:
50
35
|
Complete VBScript Reference
Click here to design a Stunning Flash Website for Free
Wix is a revolutionary web design tool that provides anyone with the possibility to create professional and beautiful websites for free.
With e-commerce features, search engine visibility and many more professional tools, Wix is the ultimate solution for creating a spectacular site while saving tons of money.
|