Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

Gradient Color C#, ASP.NET

0.00/5 (No votes)
14 Apr 2013 1  
This a trick to generate random gradient color in your ASP.NET project, which will change randomly on every post-back.

Introduction

This is a trick to generate a random gradient color in your ASP.NET project, which will change randomly on every post-back.

Background

Required references are given below:

using System.Drawing.Drawing2D;
using System.Drawing;
using System.IO;
using System.Drawing.Imaging;

Using the code  

Following is my code for the ProcessRequest method handler: 

public void ProcessRequest (HttpContext context) {

    string[] fColor = new string[] {"Gray","Skyblue","Green","Yellow" };
    string[] sColor = new string[] {"white","Red","Pink","blue" };
    Random r = new Random();
    string firstColor = fColor[r.Next(fColor.Length -1)];
    string secondColor = sColor[r.Next(sColor.Length - 1)];
    Int32 height = 786;
    Bitmap img = new Bitmap(2, height);
    Graphics g = Graphics.FromImage(img);
    //Drawing2D
    LinearGradientBrush brush = new LinearGradientBrush(
        Point.Empty, 
        new Point(0, height), 
        this.getColorFromString(firstColor), 
        this.getColorFromString(secondColor));
    
    g.DrawRectangle(new System.Drawing.Pen(brush, 10), new Rectangle(0, 0, 2, height));
    context.Response.ContentType = ".jpg";
    MemoryStream str = new MemoryStream();
    img.Save(str, ImageFormat.Jpeg);
    context.Response.BinaryWrite(str.ToArray());
}
private System.Drawing.Color getColorFromString(string SColor)
{
    return System.Drawing.Color.FromName(SColor);
}

Points of Interest

Provide every postback a new background whenever user browses pages of the website.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here