<html>
<head>
<title>List Selection Reply Demo</title>
</head>
<body bgcolor="gray">
<h2 style="color:white">You selected the following colors:</h2>
<b>
<%
for i = 1 to Request.Form("colorList").Count
Response.Write("<font size=+2 color=" & Request.Form("colorList")(i) & ">")
Response.Write(Request.Form("colorList")(i))
Response.Write("</font><br>")
Next
%>
</b>
</body>
</html>