VBScript Random number
Random number
<html>
<body>
<script type="text/vbscript">
randomize()
randomNumber=Int(100 * rnd())
document.write("Random number: <b>" & randomNumber & "</b>")
</script>
</body>
</html>
<html>
<body>
<script type="text/vbscript">
randomize()
randomNumber=Int(100 * rnd())
document.write("Random number: <b>" & randomNumber & "</b>")
</script>
</body>
</html>