网上目前流行的验证码方式,大致有3种:
- 普通的几位 字符+数字
- 中文
- 回答问题(算术运算、一般的问题)
对于.NET的验证码而言,最普遍的是 第一种情况,所以我这里弄了 第三种情况,给大家多一种选择
*---------------------------------------
* Author: DeltaCat (三角猫)
*
* http://www.zu14.cn (真有意思网)
*
* Date: 2008/11/22
*
* 转载请保留此信息
--------------------------------------*/
///
/// 数学算式的验证码
///
public sealed class MathVerifyCode
{
#region 生成图片
///
/// 输出验证码表达式到浏览器
///
/// httpcontext
/// 保存运算值的SESSION的KEY
public void OutputImage(System.Web.HttpContext context, string sessionKey)
{
int mathResult = 0;
string expression = null;
Random rnd = new Random();
////生成3个10以内的整数,用来运算
int operator1 = rnd.Next(0, 10);
int operator2 = rnd.Next(0, 10);
int operator3 = rnd.Next(0, 10);
////随机组合运算顺序,只做 + 和 * 运算
switch (rnd.Next(0, 3))
{
case 0:
mathResult = operator1 + operator2 * operator3;
expression = string.Format("{0} + {1} * {2} = ?", operator1, operator2, operator3);
break;
case 1:
mathResult = operator1 * operator2 + operator3;
expression = string.Format("{0} * {1} + {2} = ?", operator1, operator2, operator3);
break;
default:
mathResult = operator2 + operator1 * operator3;
expression = string.Format("{0} + {1} * {2} = ?", operator2, operator1, operator3);
break;
}
using (Bitmap bmp = new Bitmap(150, 25))
{
using (Graphics graph = Graphics.FromImage(bmp))
{
graph.Clear(Color.FromArgb(232, 238, 247)); ////背景色,可自行设置
////画噪点
for (int i = 0; i <= 128; i++)
{
graph.DrawRectangle(
new Pen(Color.FromArgb(rnd.Next(0, 255), rnd.Next(0, 255), rnd.Next(0, 255))),
rnd.Next(2, 128),
rnd.Next(2, 38),
1,
1);
}
////输出表达式
for (int i = 0; i < expression.Length; i++)
{
graph.DrawString(expression.Substring(i, 1),
new Font(FontFamily.GenericSansSerif, 12, FontStyle.Bold),
new SolidBrush(Color.FromArgb(rnd.Next(255), rnd.Next(128), rnd.Next(255))),
5 + i * 10,
rnd.Next(1, 5));
}
////画边框,不需要可以注释掉
graph.DrawRectangle(new Pen(Color.Firebrick), 0, 0, 150 - 1, 25 - 1);
}
context.Session[sessionKey] = mathResult; ////将运算结果存入session
////禁用缓存
DisableHttpCache(context);
////输出图片到浏览器,我采用的是 gif 格式,可自行设置其他格式
context.Response.ContentType = "image/gif";
bmp.Save(context.Response.OutputStream, System.Drawing.Imaging.ImageFormat.Gif);
context.Response.End();
}
}
#endregion
///
/// 禁用缓存
///
/// httpcontext
private static void DisableHttpCache(System.Web.HttpContext context)
{
////清除http缓存
context.Response.ClearHeaders();
context.Response.ClearContent();
////禁用http缓存
//// http 1.1
context.Response.AddHeader("Expires", "Mon, 26 Jul 1997 05:00:00 GMT");
context.Response.AddHeader("Cache-Control", "no-store, no-cache, max-age=0, must-revalidate");
//// http 1.0
context.Response.AddHeader("Pragma", "no-cache");
}
}
注: 如果觉得验证码太模糊,可以将画噪点的地方调整为下面的:
for (int i = 0; i <= 128; i++)
{
graph.DrawRectangle(
new Pen(Color.FromArgb(rnd.Next(0, 255), rnd.Next(0, 255), rnd.Next(0, 255))),
(float)rnd.Next(2, 128),
(float)rnd.Next(2, 38),
0.5F, //噪点的粒度
0.5F);//噪点的粒度,可以调节这两个值,到认为自己满意
}
用说明:
介绍两种使用方式:
——————————————————————–
1. 使用普通的 aspx 页面承载输出 image
2. 使用 HttpHandler文件,就是 ashx文件承载输出image
——————————————————————–
推荐后者,使用方法如下:
aspx页面
//新建一个ASPX页面,例如: mvc.aspx
//在 Page_Load 事件里,写入
protected void Page_Load(object sender, EventArgs e)
{
MathVerifyCode mVC = new MathVerifyCode();
mVC.OutputImage(HttpContext.Current, "mvc");
//mvc是保存验证码结果的SESSION的key
}
ashx方式
//新建一个 ashx 页面,例如: Mvc.ashx
//记得此ashx文件的类,一定要继承 System.Web.SessionState.IRequiresSessionState 才可以使用session
public class Mvc : IHttpHandler, System.Web.SessionState.IRequiresSessionState
{
public void ProcessRequest (HttpContext context) {
MathVerifyCode mvc = new MathVerifyCode();
mvc.OutputImage(context, "mvc");
}
public bool IsReusable {
get {
return true;
}
}
}
在需要显示验证码的地方,加入:
或者
本文作者:三角猫 来源:http://www.zu14.cn/2008/11/05/net_mail/
CIO之家 www.ciozj.com 微信公众号:imciow