ASP/VBScript Atn() Returns the arctangent of a number.
ShotDev Focus:
- Using Asp and Atn() function.
Example
asp_atn.asp
<% Option Explicit %> <html> <head> <title>ShotDev.Com Tutorial</title> </head> <body> <% Response.write Tan(-50.0)&"<br>" Response.write Tan(25)&"<br>" Response.write Tan(50)&"<br>" %> </body> </html>
Create a asp file and save to path root-path/myasp/
Run
http://localhost/myasp/asp_atn.asp
Screenshot