ASP/VBScript Log() Returns the natural logarithm of a number.
ShotDev Focus:
- Using Asp and Log() function.
Example
asp_log.asp
<% Option Explicit %> <html> <head> <title>ShotDev.Com Tutorial</title> </head> <body> <% Response.write Log(30.123456)&"<br>" Response.write Log(31.123456)&"<br>" Response.write Log(32.123456)&"<br>" Response.write Log(33.123456)&"<br>" Response.write Log(34.123456)&"<br>" %> </body> </html>
Create a asp file and save to path root-path/myasp/
Run
http://localhost/myasp/asp_log.asp
Screenshot
3archived…
…