Thursday, 1 March 2012

Returning a random number

<html>
<body>
<script type="text/vbscript">
Randomize()
randomNumber=Int(90 * Rnd())
document.write("Random number <b>" & randomNumber & "</b>")
</script>
</body>
</html>

No comments:

Post a Comment