ASP/VBScript Exp() Returns e (the base of natural logarithms) raised to a power.
ShotDev Focus:
- Using Asp and Exp() function.
Example
asp_exp.asp
<% Option Explicit %> <html> <head> <title>ShotDev.Com Tutorial</title> </head> <body> <% Response.write Exp(2.5678)&"<br>" Response.write Exp(-1.5678)&"<br>" %> </body> </html>
Create a asp file and save to path root-path/myasp/
Run
http://localhost/myasp/asp_atn.asp
Screenshot