VBScript Rnd Function
❮ Complete VBScript Reference
The Rnd function returns a random number. The number is always less than 1 but greater or equal to 0.
Syntax
| Parameter | Description |
|---|---|
| number | Optional. A valid numeric expression If number is:
|
Examples
Example 1
A random number:
response.write(Rnd)
%>
Note that you will get the same number every time. To avoid this, use the Randomize statement like in Example 2
The output of the code above will be:
Example 2
To avoid getting the same number every time, like in Example 1, use the Randomize statement:
Randomize
response.write(Rnd)
%>
The output of the code above will be:
Example 3
Here is how to produce random integers in a given range:
Dim max,min
max=100
min=1
Randomize
response.write(Int((max-min+1)*Rnd+min))
%>
The output of the code above will be:
❮ Complete VBScript Reference