ASP/VBScript Oct() Returns a string representing the octal value of a number.
ShotDev Focus:
- Using Asp and Oct() function.
Example
asp_oct.asp
<% Option Explicit %> <html> <head> <title>ShotDev.Com Tutorial</title> </head> <body> <% Response.write Oct(4)&"<br>" Response.write Oct(-4)&"<br>" Response.write Oct(10)&"<br>" Response.write Oct(-10)&"<br>" Response.write Oct(15)&"<br>" %> </body> </html>
Create a asp file and save to path root-path/myasp/
Run
http://localhost/myasp/asp_sqr.asp
Screenshot