ASP/VBScript Sin() Returns the sine of an angle.
ShotDev Focus:
- Using Asp and Sin() function.
Example
asp_sin.asp
<% Option Explicit %> <html> <head> <title>ShotDev.Com Tutorial</title> </head> <body> <% Response.write Sin(100)&"<br>" Response.write Sin(200)&"<br>" Response.write Sin(-100)&"<br>" Response.write Sin(-200)&"<br>" Response.write Sin(300)&"<br>" %> </body> </html>
Create a asp file and save to path root-path/myasp/
Run
http://localhost/myasp/asp_sin.asp
Screenshot