|
CodeAve.com - ASP - Random Functions | |||
|
|
||||
| Random Colors | ||||
|
|
||||
<html> <title>CodeAve.com(Random Colors)</title> <body bgcolor="#FFFFFF"> <% dim g_random, color ' begin random function randomize ' select a random number between one and five g_random=int(rnd*5)+1 ' Based on the randon number the following select case ' will assign a color to be displayed select case g_random case "1" ' blue color ="#003366" case "2" ' green color ="#006633" case "3" ' another green color ="#999966" case "4" ' another purple color ="#663399" case else ' red color ="#660000" end select %> <table border="0" width="100%" align="center"> <tr> <td width="100%" bgcolor="<%= color %>" align="center"> <font color="#FFFFFF">The Current Color is <%= color %></font> </td> </tr> </table> <br> <center> Click <a href="<%= request.servervariables("script_name") %>"> <font color="<%= color %>">here</font></a> to reload this page </center> </body> </html>
|
||||
|
|
||||