然自己明白验证码的原理并且能自己写出验证码程序来,但由于创意或技术还不及格的问题,总觉得自己做的不够好看,所以就用网上down的。
而网上的那些程序几乎全都是高手写的,对他们来说那是小菜一碟,所以很少有注释的。这对于很多菜鸟来说是较难理解的。
*注意要引入System.Drawing空间
public class ValidateCode : System.Web.UI.Page
{
private void Page_Load(object sender, System.EventArgs e)
{
//每次载入时执行创建验证码图像并填写验证码字符函数,保证每次刷新的验证码都不同。
this.CreateCheckCodeImage(GenerateCheckCode());
}
#region Web 窗体设计器生成的代码
override protected void OnInit(EventArgs e)
{
//
// CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
//
InitializeComponent();
base.OnInit(e);
}
/// <summary>
/// 设计器支持所需的方法 - 不要使用代码编辑器修改
/// 此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.Load += new System.EventHandler(this.Page_Load);
}
#endregion
private string GenerateCheckCode() //产生随机验证码字符函数
{
int number;
char code;
string checkCode = String.Empty;
System.Random random = new Random();
for(int i=0; i<5; i++) //字符和数字的混合.长度为5。其实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));
//把产生的验证码保存到COOKIE中
return checkCode;//返回结果以供CreateCheckCodeImage()函数使用
}
//以下函数是创建验证码图像并填写验证码字符
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);//用指定的大小初始化Bitmap类创建图像对象
Graphics g = Graphics.FromImage(image);//表示在指定的图像上写字
try
{
//生成随机生成器
Random random = new Random();
//清空图片背景色
g.Clear(Color.White);
//画图片的背景噪音线
for(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);
//用画笔画出高级的2D向量图形字体
g.DrawString(checkCode, font, brush, 2, 2);//以字符串的形式输出
//画图片的前景噪音点
for(int i=0; i<100; i++)//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);
//把生成的gif以字节数组的形式保存在内存里
Response.ClearContent();//清空缓冲区中的内容
Response.ContentType = "image/Gif";//输出内容的类型,即以gif的文件格式输出
Response.BinaryWrite(ms.ToArray());
//把字节数组一二进制的形式输出,即以基本数据类型形式输出
}
finally
{
g.Dispose();//释放绘图对象
image.Dispose();//释放图像对象
}
}
}
假如以上验证码生成器页面名为:ValidateCode.aspx,那么在登录页面中使用“<IMG>” 这个 HTML 元素来显示生成的验证码图片:<IMG src="ValidateCode.aspx">
在登录页面的登录按钮的处理事件中使用以下代码判断验证码:
private void btnLogin_Click(object sender, System.Web.UI.ImageClickEventArgs e)
{
//判断是否接收到传入的COOKIE
if(Request.Cookies["CheckCode"] == null)
{
lblMessage.Text = "您的浏览器设置已被禁用 Cookies,您必须设置浏览器允许使用 Cookies 选项后才能使用本系统。";
lblMessage.Visible = true;
return;
}
if(String.Compare(Request.Cookies["CheckCode"].Value, txtCheckCode.Text, true) != 0)
//比较输入的验证码是否与COOKIE中的一致
{
lblMessage.Text = "验证码错误,请输入正确的验证码。";
lblMessage.Visible = true;
return;
}
}