/// Create CheckCode. aspx
/// Used <asp: Image ID = "Image1" runat = "server" Height = "27px" Width = "77px"
Imageurl = "CheckCode. aspx"/>
Using System;
Using System. Collections;
Using System. Configuration;
Using System. Data;
Using System. Linq;
Using System. Web;
Using System. Web. Security;
Using System. Web. UI;
Using System. Web. UI. HtmlControls;
Using System. Web. UI. WebControls;
Using System. Web. UI. WebControls. WebParts;
Using System. Xml. Linq;
Using System. Drawing;
Public partial class CheckCode: System. Web. UI. Page
{
Protected void Page_Load (object sender, EventArgs e)
{
CreateCheckCodeImage (GenerateCheckCode ());
}
Private string GenerateCheckCode () // draw 4 random numbers or letters
{
Int number;
Char code;
String checkCode = String. Empty;
Random random = new Random ();
For (int I = 0; I <4; I ++)
{
Number = random. Next ();
If (number % 2 = 0)
Code = (char) ('0' + (char) (number % 10 ));
Else
Code = (char) ('A' + (char) (number % 26 ));
CheckCode + = code. ToString ();
}
Response. Cookies. Add (new HttpCookie ("CheckCode", checkCode ));
Return checkCode;
}
Private void CreateCheckCodeImage (string checkCode)
{
If (checkCode = null | checkCode. Trim () = String. Empty)
Return;
System. Drawing. Bitmap image = new
System. Drawing. Bitmap (int) Math. Ceiling (checkCode. Length * 12.5), 22 );
Graphics g = Graphics. FromImage (image );
Try
{
// Generate a random Generator
Random random = new Random ();
// Clear the background color of the image
G. Clear (Color. White );
// Draw the background noise line of the image
For (int I = 0; I <2; I ++)
{
Int x1 = random. Next (image. Width );
Int x2 = random. Next (image. Width );
Int y1 = random. Next (image. Height );
Int y2 = random. Next (image. Height );
G. DrawLine (new Pen (Color. Black), x1, y1, x2, y2 );
}
Font font = new System. Drawing. Font ("Arial", 12,
(System. Drawing. FontStyle. Bold ));
System. Drawing. Drawing2D. LinearGradientBrush brush = new
System. Drawing. Drawing2D. LinearGradientBrush (new Rectangle (0, 0, image. Width,
Image. Height), Color. Blue, Color. DarkRed, 1.2f, true );
G. DrawString (checkCode, font, brush, 2, 2 );
// Foreground noise of the image
For (int I = 0; I <100; I ++)
{
Int x = random. Next (image. Width );
Int y = random. Next (image. Height );
Image. SetPixel (x, y, Color. FromArgb (random. Next ()));
}
// Draw the border line of the image
G. DrawRectangle (new Pen (Color. Silver), 0, 0, image. Width-1,
Image. Height-1 );
System. IO. MemoryStream MS = new System. IO. MemoryStream ();
Image. Save (MS, System. Drawing. Imaging. ImageFormat. Gif );
Response. ClearContent ();
Response. ContentType = "image/Gif ";
Response. BinaryWrite (ms. ToArray ());
}
Finally
{
G. Dispose ();
Image. Dispose ();
}
}
}