Our PHP programmer friends have a function called randInt() which returns a random integer between two specified integers. It's time to level the playing field.
ASP
function randInt(min, max)RandomizerandInt = Int((max - min + 1) * Rnd + min)end function

No comments:
Post a Comment