Randomize
The Randomize subroutine is used to seed the internal
random number generator that the VBScript engine uses. This
subroutine should be called on every ASP page that uses the
Rnd function.
This subroutine has no arguments and because it is a subroutine,
returns no value.
Randomize Response.Write "Random (1-10) = " & Int(Rnd() * 10) + 1
|
 |

|