ASP Random link
Random link
<html>
<body>
<%
randomize()
r=rnd()
if r>0.5 then
response.write("<a href='http://www.codelibary.com/'>CodeLibary.com</a>")
else
response.write("<a href='http://www.google.com/'>Google.com</a>")
end if
%>
</body>
</html>