获取随即颜色值
//生成随即颜色值 颜色偏深
Response.Write("<font color=" + GetRandomColor() + ">" + GetRandomColor() + "</font>");
public string GetRandomColor()
{
Random d_First = new Random((int)DateTime.Now.Ticks);
System.Threading.Thread.Sleep(d_First.Next(50));
Random d_Second = new Random((int)DateTime.Now.Ticks);
int int_Red = d_First.Next(256);
int int_Green = d_Second.Next(256);
int int_Blue = (int_Red + int_Green > 400) ? 0 : 400 - int_Red - int_Green;
int_Blue = (int_Blue > 255) ? 255 : int_Blue;
return Color.FromArgb(int_Red, int_Green, int_Blue).Name;
}
天行健,君子以自强不息