Código fuente de 'Numeros-aleatorios.asp'
<html>
<head>
<title>Números aleatorios - Códigos asp, programacion asp, descargas asp, rutinas asp</title>
</head>
<p align="center"><b><font size="3">Números aleatorios</font></b></p>
<br>
<body style="font-family: Arial; font-size: 11pt">
<% 'Código ASP
Randomize
' Rango de valores
Aleatorio_Min = 1
' Rango de valores
Aleatorio_Max = 10
Aleatorio = Int(((Aleatorio_Max-Aleatorio_Min+1) * Rnd) + Aleatorio_Min)
Response.Write "Número aleatorio (entre 1 y 10) = " & Aleatorio & "<br>"
'Fin código ASP %>
<br>
<a href="Números%20aleatorios.asp">Actualiza para generar otro numero aleatorio</a>:
</body>
</html>