Código fuente de 'Visualiza-grafico-aleatoriamente.asp'
<html>
<head>
<title>Visualiza gráfico aleatoriamente. - Códigos asp, programacion asp, descargas asp, rutinas asp</title>
</head>
<p align="center"><b><font size="3">Visualiza gráfico aleatoriamente..<br>
</font></b></p>
<body style="font-family: Arial; font-size: 11pt">
<CENTER>
<%
Randomize
Dim RandomNum, UpperBound, LowerBound
LowerBound = 0 'Put In the first picture #
UpperBound = 9 'Put In the last picture #
RandomNum = Int((UpperBound - LowerBound + 1) * Rnd + LowerBound)
%>
El gráfico mostrado es:
<IMG SRC="<% = RandomNum %>.gif">
</CENTER>
<!--Copy End here-->
</BODY>
</HTML>