ASP.NET 验证码刷新 纪录

1 创建一个一般处理程序 

.

 2.将下列代码复制到 ProcessRequest 方面内, 

 

 

  int codeW =  80;
             int codeH =  22;
             int fontSize =  16;
             string chkCode =  string.Empty;
             // 颜色列表,用于验证码、噪线、噪点 
            Color[] color = { Color.Black, Color.Red, Color.Blue, Color.Green, Color.Orange, Color.Brown, Color.Brown, Color.DarkBlue };
             // 字体列表,用于验证码 
             string[] font = {  " Times New Roman "" Verdana "" Arial "" Gungsuh "" Impact " };
             // 验证码的字符集,去掉了一些容易混淆的字符 
             char[] character = {  ' 2 '' 3 '' 4 '' 5 '' 6 '' 8 '' 9 '' a '' b '' d '' e '' f '' h '' k '' m '' n '' r '' x '' y '' A '' B '' C '' D '' E '' F '' G '' H '' J '' K '' L '' M '' N '' P '' R '' S '' T '' W '' X '' Y ' };
            Random rnd =  new Random();
             // 生成验证码字符串 
             for ( int i =  0; i <  4; i++)
            {
                chkCode += character[rnd.Next(character.Length)];
            }
             // 写入Session
            context.Session[ " DtCode "] = chkCode;
             // 创建画布
            Bitmap bmp =  new Bitmap(codeW, codeH);
            Graphics g = Graphics.FromImage(bmp);
            g.Clear(Color.White);
             // 画噪线 
             for ( int i =  0; i <  10; i++)
            {
                 int x1 = rnd.Next(codeW);
                 int y1 = rnd.Next(codeH);
                 int x2 = rnd.Next(codeW);
                 int y2 = rnd.Next(codeH);
                Color clr = color[rnd.Next(color.Length)];
                g.DrawLine( new Pen(clr), x1, y1, x2, y2);
            }
             // 画验证码字符串 
             for ( int i =  0; i < chkCode.Length; i++)
            {
                 string fnt = font[rnd.Next(font.Length)];
                Font ft =  new Font(fnt, fontSize);
                Color clr = color[rnd.Next(color.Length)];
                g.DrawString(chkCode[i].ToString(), ft,  new SolidBrush(clr), ( float)i *  18 +  2, ( float) 0);
            }
             // 画噪点 
             for ( int i =  0; i <  100; i++)
            {
                 int x = rnd.Next(bmp.Width);
                 int y = rnd.Next(bmp.Height);
                Color clr = color[rnd.Next(color.Length)];
                bmp.SetPixel(x, y, clr);
            }
             // 清除该页输出缓存,设置该页无缓存 
            context.Response.Buffer =  true;
            context.Response.ExpiresAbsolute = System.DateTime.Now.AddMilliseconds( 0);
            context.Response.Expires =  0;
            context.Response.CacheControl =  " no-cache ";
            context.Response.AppendHeader( " Pragma "" No-Cache ");
             // 将验证码图片写入内存流,并将其以 "image/Png" 格式输出 
            MemoryStream ms =  new MemoryStream();
             try
            {
                bmp.Save(ms, ImageFormat.Png);
                context.Response.ClearContent();
                context.Response.ContentType =  " image/Png ";
                context.Response.BinaryWrite(ms.ToArray());
            }
             finally
            {
                 // 显式释放资源 
                bmp.Dispose();
                g.Dispose();
            }

 

3.前台页面中来引用这个处理程序 

 

< img  id ="imgCode"  src ="Tools/VerifyCodeImage.ashx"  width ="80"  height ="23"  style ="cursor: pointer;"
                                                    alt
="点击刷新验证码"  onclick ="javascript:ImgCodeRefer()"   /> &nbsp;看不清楚?试试点击图片

 

注意要素:给img 标签定义一个id 然后将程序直接赋给img 的 src属性,style 定义的主要是鼠标类型,鼠标点上去变成手,

onclick 事件就处理图片刷新的点击事件。 

 

 4.写个JS的处理验证码刷新事件

 

     < script  type ="text/javascript" >

         function ImgCodeRefer() {

             var img = document.getElementById("imgCode");
            img.src = img.src + '?';  // 这个特别重要
        }
     </ script >

 

5 接收验证验证码是否正确

相信你已经看到了再第二步的时候 有一句这个话://写入Session

            context.Session[ " DtCode "] = chkCode; 

 就是把验证码写入到session中,这样你就可以在接收的的时候这样写:

  string _code = context.Request.Form[ " txtCode "]; 
   if (_code.ToLower() != (context.Session[ " DtCode "].ToString()).ToLower())
                {
                    context.Response.Write( " {msg:0, msgbox:\"您输入的验证码与系统的不一致!\"} ");
                     return;
                } 

这样验证码验证是否就OK了。

我的验证码验证也是在一般处理程序中写的,因为用的是Ajax异步提交做的处理。

这样一个验证码程序就完成了。不行你可以试试,如果你说浏览器会不会存在兼容性,这个我可以告诉你:目前测试兼容IE6.7.8/360/搜狗/Chrome,FF我没有测试,个人比较喜欢Chrome,因此就没有用FF了,呵呵

本人发布这篇文章,Code不是个人写的,都是前人的足迹,个人拿来学习,成功后发布一下,供大家借用。

正版链接:http://www.cnblogs.com/Skyzi/archive/2009/01/06/1370352.html  Skyzi  

 

转载于:https://www.cnblogs.com/dropeye/archive/2012/04/25/2470705.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值