<!DOCTYPE html>
<html>
<body>

<%
randomize()
r=rnd()
If r>0.5 Then
  response.write("<a href='http://www.w3schools.com/xml/default.asp'>Learn XML!</a>")
Else
  response.write("<a href='http://www.w3schools.com/php/default.asp'>Learn PHP!</a>")
End If
%>


<p>
This example demonstrates a link, when you click on the link it will take you to XML or to
PHP. There is a 50% chance for each of them.
</p>
</body>
</html>