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