So I'm generating a random number using Rnd and Randomize to set a seed that looks like this:
Randomize lSeed
Response.Write Rnd
I'm noticing that it's returning the same result for two values in a row for lSeed (e.g. 123, 124) but then on say 125 it will return a new value but 126 will be the same as the on for 125. Why would this be?
Edit:
I have tried something like this
Randomize
Randomize lSeed
Response.write Rnd
And I get the same results I described above.