|
CodeAve.com - ASP - Random Functions | |||
|
|
||||
| Random Number | ||||
|
|
||||
<html> <title>CodeAve.com(Random Number)</title> <body bgcolor="#FFFFFF"> <% ' begin random function randomize ' random numbers is the varible that will contain a numeriv value ' between one and nine random_number=int(rnd*9)+1 ' write the random number out to the browser response.write random_number %> <p> Click <a href="<%= request.servervariables("script_name") %>">here</a> to refresh this page </body> </html>
|
||||
|
|
||||