رمز التحقق لـ ASP.net (C#)
الكاتب:Eve Cole
وقت التحديث:2009-07-01 15:48:32
رمز التحقق من الفئة العامة: System.Web.UI.Page
{
Page_Load باطلة خاصة (مرسل الكائن، System.EventArgs e)
{
this.CreateCheckCodeImage(GenerateCheckCode());
}
#region مصمم نماذج الويب تم إنشاء الكود
تجاوز OnInit المحمي باطلة (EventArgs e)
{
//
// CODEGEN: هذا الاستدعاء مطلوب من قبل مصمم نماذج الويب asp.NET.
//
InitializeComponent();
base.OnInit(e);
}
/// <الملخص>
/// يدعم المصمم الطرق المطلوبة - لا تستخدم محرر التعليمات البرمجية للتعديل
/// محتوى هذه الطريقة.
/// </الملخص>
الفراغ الخاص ()InitializeComponent
{
this.Load += new System.EventHandler(this.Page_Load);
}
#endregion
سلسلة خاصة GenerateCheckCode()
{
رقم كثافة العمليات؛
رمز شار؛
string checkCode = String.Empty;
System.Random Random = new Random();
ل(int i=0;i<5;i++)
{
الرقم = عشوائي. التالي ()؛
إذا (رقم % 2 == 0)
كود = (شار)('0' + (شار)(رقم % 10));
آخر
كود = (شار)('A' + (شار)(رقم % 26));
checkCode += code.ToString();
}
Response.Cookies.Add(new HttpCookie("CheckCode"، checkCode));
رمز التحقق من الإرجاع؛
}
الفراغ الخاص CreateCheckCodeImage (رمز التحقق من السلسلة)
{
إذا (checkCode == null || checkCode.Trim () == String.Empty)
يعود؛
System.Drawing.Bitmap image = new System.Drawing.Bitmap((int)Math.Ceiling((checkCode.Length * 12.5)), 22);
الرسومات ز = Graphics.FromImage(image);
يحاول
{
// إنشاء مولد عشوائي
عشوائي عشوائي = عشوائي جديد ()؛
// مسح لون خلفية الصورة
g.Clear(Color.White);
// ارسم خط ضوضاء الخلفية للصورة
ل(int i=0;i<25;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.Silver), x1, y1, x2, y2);
}
Font Font = new System.Drawing.Font("Arial", 12, (System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic));
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, الخط, فرشاة, 2, 2);
// ارسم نقاط الضوضاء الأمامية للصورة
ل(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()));
}
// ارسم الخط الحدودي للصورة
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());
}
أخيراً
{
g.Dispose();
image.Dispose();
}
}
}
http://www.cnblogs.com/niit007/archive/2006/08/13/475506.html