asp.net produces random color implementation code _ Practical skills

Source: Internet
Author: User
Copy Code code as follows:

public string Getrandomcolor ()
{
Random Randomnum_first = new Random ((int) DateTime.Now.Ticks);
There's nothing to say about random numbers in C #
System.Threading.Thread.Sleep (Randomnum_first.next (50));
Random Randomnum_sencond = new Random ((int) DateTime.Now.Ticks);

In order to be displayed on a white background, try to produce dark
int int_red = Randomnum_first.next (256);
int int_green = Randomnum_sencond.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;
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.