Oct
The Oct function will convert a whole number into it's
Octal equivalent. The octal numbering system is a base 8 numbering
system which means that its digits go from 0 to 7.
Octal numbers are commonly used in Unix systems for file permissions.
There is not much use for using octal numbers outside of its computer
applications.
Response.Write "Oct(1) = " & Oct(1) & "<BR>" Response.Write "Oct(8) = " & Oct(8) & "<BR>" Response.Write "Oct(10) = " & Oct(10) & "<BR>" Response.Write "Oct(100) = " & Oct(100) & "<BR>" Response.Write "Oct(255) = " & Oct(255) & "<BR>"
|