string[] List= new string[3];
List[0] = "#0000CC";
List[1] = "#CC0033";
List[2] = "#00FF33";
String name;
name = txtentry.Text;
for (int i = 0; i<List.Length; i++)
{
Response.Write("<font color='" +List[i]+"'>" + name + "</font>");
}