简单实用方法!!

 简单验证码生成!!

 

protected void Page_Load(object sender, EventArgs e)
    {
      
            string CharList = "0123456789";
            int[] size = { 10, 12, 14 };
            string[] fm = { "宋体", "楷体_GB2312", "黑体" };
            int lastSize = 0;

            DateTime dt = System.DateTime.Now;
            Random rand = new Random();
            int x = rand.Next(10000, 100000);
            string src = x.ToString();
            Bitmap bmp = new Bitmap(100, 20);

            Graphics g = Graphics.FromImage(bmp);
            g.FillRectangle(Brushes.White, 0, 0, 100, 20);
            Color lastcolor = Color.Blue;
            bool info = false;
            for (int i = 0; i < 5; i++)
            {
              char  ch=CharList[Convert.ToInt32(src[i].ToString())];
                    
             

              string temp = "";
              temp += ch;
              int sz = size[rand.Next(0, 3)];
              if (i == 3 && !info) //总共5字,到了第4个还没的重叠的话那第四个要设成14号字
                  //保证重叠发生
                  sz = 14;
              int cr = rand.Next(0, 200);
              int cg = rand.Next(0, 200);
              int cb = rand.Next(0, 200);
              Color c = Color.FromArgb(cr, cg, cb);
              int sub = 0;
              if (lastSize == 14)
              {//如果上一个字是14号,那么下一字向左入侵保证重叠
                  //对大字号重叠的可视性要比小字号强.
                  //重叠时最好将当前字符的颜色设为上一字符颜色
                  c = lastcolor;
                  info = true;
                  sub = 8;
                 
              }
         
               
                this.lblMessage.Text+=ch.ToString();
             
              g.DrawString(ch.ToString(),
           new Font(new FontFamily(fm[rand.Next(0, fm.Length)]), sz),
           new SolidBrush(c),
           new Point(i * 20 - sub, 0));
              //这里因为字号不同,间隔也不同,但每个字的起始点相同,可以修改根据上一个字
              //的大小再调整起始点.
              lastSize = sz;
              lastcolor = c;
              Response.Cookies.Add(new HttpCookie("code", this.lblMessage.Text.ToString()));
             
            }
            this.lblMessage.Text = "";
            bmp.Save("d:/aaa.gif");
            this.Image1.ImageUrl = "d:/aaa.gif";
        }
        protected void Button1_Click(object sender, EventArgs e)
        {
            if (Request.Cookies["code"] == null)
            {
                this.Label1.Text = "您的浏览器设置已被禁用 Cookies,您必须设置浏览器允许使用 Cookies 选项后才能使用本系统。";
               
                return;
            }

            if (Request.Cookies["code"].Value.ToString().Trim()==this.TextBox1.Text.Trim())
            {
                Label1.Text = "验证码正确!!";
                Response.Cookies["code"].Value =null;
               
            }

            else
                Label1.Text = "验证码错误,请输入正确的验证码。当前的验证码为" + Request.Cookies["code"].Value.ToString().Trim();
          
                return;
        }


验证码原理:
在生成验证码图片的时候,同时生成了一个Session,其值就是验证码图片中的数字值。

同时,提供输入框让用户输入,提交输入值后,与已有的Session值进行比较,根据判断结果做相应判断。

 

随机生成中文汉字的基本原理!!

 

static void Main(string[] args)
        {
            Encoding gb = Encoding.GetEncoding("gb2312");

            //调用函数产生4个随机中文汉字编码
            object[] bytes = CreateRegionCode(4);

            //根据汉字编码的字节数组解码出中文汉字
            string str1 = gb.GetString((byte[])Convert.ChangeType(bytes[0], typeof(byte[])));
            string str2 = gb.GetString((byte[])Convert.ChangeType(bytes[1], typeof(byte[])));
            string str3 = gb.GetString((byte[])Convert.ChangeType(bytes[2], typeof(byte[])));
            string str4 = gb.GetString((byte[])Convert.ChangeType(bytes[3], typeof(byte[])));

            //输出的控制台
            Console.WriteLine(str1 + str2 + str3 + str4);
            Thread.Sleep(3000);

        }
         public static object[] CreateRegionCode(int strlength)
        {
            //定义一个字符串数组储存汉字编码的组成元素
            string[] rBase=new String [16]{"0","1","2","3","4","5","6","7","8","9","a","b","c","d","e","f"};
           
            Random rnd=new Random();
       
            //定义一个object数组用来
            object[] bytes=new object[strlength];
 
            /**//*每循环一次产生一个含两个元素的十六进制字节数组,并将其放入bject数组中
             每个汉字有四个区位码组成
             区位码第1位和区位码第2位作为字节数组第一个元素
             区位码第3位和区位码第4位作为字节数组第二个元素
            */
            for(int i=0;i<strlength;i++)
            {
                //区位码第1位
                int r1=rnd.Next(11,14);
                string str_r1=rBase[r1].Trim();
 
                //区位码第2位
                rnd=new Random(r1*unchecked((int)DateTime.Now.Ticks)+i);//更换随机数发生器的种子避免产生重复值
                int r2;
                if (r1==13)
                {
                    r2=rnd.Next(0,7);
                }
                else
                {
                    r2=rnd.Next(0,16);
                }
                string str_r2=rBase[r2].Trim();
 
                //区位码第3位
                rnd=new Random(r2*unchecked((int)DateTime.Now.Ticks)+i);
                int r3=rnd.Next(10,16);
                string str_r3=rBase[r3].Trim();
 
                //区位码第4位
                rnd=new Random(r3*unchecked((int)DateTime.Now.Ticks)+i);
                int r4;
                if (r3==10)
                {
                    r4=rnd.Next(1,16);
                }
                else if (r3==15)

                {
                    r4=rnd.Next(0,15);
                }
                else
                {
                    r4=rnd.Next(0,16);
                }
                string str_r4=rBase[r4].Trim();
 
                //定义两个字节变量存储产生的随机汉字区位码
                byte byte1=Convert.ToByte(str_r1 + str_r2,16);
                byte byte2=Convert.ToByte(str_r3 + str_r4,16);
                //将两个字节变量存储在字节数组中
                byte[] str_r=new byte[]{byte1,byte2};
 
                //将产生的一个汉字的字节数组放入object数组中
                bytes.SetValue(str_r,i);
               
              }
 
            return bytes;
 
            }

 

   #region 从excel中导入数据到ds
       private DataSet BindDsFromExcel(string strFileDir)
         {
           string strConn;
           strConn = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source="+strFileDir+";Extended Properties='Excel 8.0;HDR=False;IMEX=1'";
          OleDbConnection OleConn = new OleDbConnection(strConn);
           OleConn.Open();
            sql = "SELECT * FROM [Sheet1$]";
          OleDbDataAdapter OleDaExcel = new OleDbDataAdapter(sql,OleConn);
            DataSet  OleDsExcle = new DataSet();
           OleDaExcel.Fill(OleDsExcle,"aa");
           OleConn.Close();
           return OleDsExcle;
       }

        #endregion

 

破解图片的方法 

 

  GF.OCR OCR1;
        private void button1_Click(object sender, EventArgs e)
        {
            CookieContainer currentcookie = new CookieContainer();
            string htmldoc = httpService.getpage("http://www.xx.com", ref currentcookie, null);
            //   webBrowser1.DocumentText=htmldoc;

            OCR1 = new OCR();
            OCR1.Abort = false;
            OCR1.ActivationKey = "Demo";
            OCR1.AllCharacterFile = "AllCharacters.nn";
            OCR1.AllCharacterMapFile = "AllCharacters.map";
            OCR1.AnalyzeLowerCaseCharacters = true;
            OCR1.AnalyzeNumericCharacters = true;
            OCR1.AnalyzeSpecialCharacters = true;
            OCR1.BarcodeType = GF.BarcodeTypes.Code39Extended;

            OCR1.BitmapImageFile = "";
            OCR1.Brightness = 7;
            OCR1.CheckSum = true;
            OCR1.DefaultFolder = "";
            OCR1.Despeckle = 1;
            OCR1.ErrorCharacter = '?';
            OCR1.ErrorCorrection = true;
            OCR1.ExtendedPictureBox = null;
            OCR1.Language = GF.LanguageType.English;
            OCR1.LowerCaseCharacterFile = "NumericCharacters.nn";
            OCR1.LowerCaseCharacterMapFile = "NumericCharacters.map";
            OCR1.MaximumCharacters = 5000;
            OCR1.MaximumHeight = 150;
            OCR1.MaximumSize = 10000;
            OCR1.MaximumWidth = 150;
            OCR1.NumericCharacterFile = "NumericCharacters.nn";
            OCR1.NumericCharacterMapFile = "NumericCharacters.map";
            OCR1.OCRType = GF.OCRTypes.Text;
            OCR1.OrderID = "Demo";
            OCR1.ProductName = "Demo";
            OCR1.RegistrationCodes = "Demo";
            OCR1.RemoveHorizontal = 0;
            OCR1.RemoveVertical = 0;
            OCR1.SectionHorizontalSpace = 1.5;
            OCR1.SectionVerticalSpace = 1.5;
            OCR1.SpecialCharacterFile = "NumericCharacters.nn";
            OCR1.SpecialCharacterMapFile = "NumericCharacters.map";
            OCR1.Statistics = false;
            OCR1.UpperCaseCharacterFile = "NumericCharacters.nn";
            OCR1.UpperCaseCharacterMapFile = "NumericCharacters.map";
            string resultString = null;
            try
            {
                resultString = Regex.Match(htmldoc, @"(?<url>/m4center/verifyImage"?statusID="d*&amp;bindID="d*&amp;serverID="d*)").Value;

                resultString = "http://www.xx.com/" + resultString;
                this.toolStripStatusLabel1.Text = resultString;
                Image img = httpService.getStream(resultString, ref currentcookie, null);
                pictureBox1.Image = img;
                                                  //  上 右  下
                Rectangle cloneRect = new Rectangle(13, 4, 78, 27);        //
                Bitmap bimg = (Bitmap)img;
                bimg = bimg.Clone(cloneRect, img.PixelFormat);

                pictureBox2.Image = bimg;

               // int dgGrayValue = 150;
                int dgGrayValue =vc.GetDgGrayValue(bimg);
               vc.GrayScale(bimg);
              
              // vc.ClearNoise(dgGrayValue, bimg);

               vc.ClearNoise(dgGrayValue, 1, bimg);

            //vc.BlackWhite(bimg, dgGrayValue);
            
                
               pictureBox3.Image = bimg;
              
             

                
                OCR1.BitmapImage = bimg;
                OCR1.Process();
                this.toolStripStatusLabel1.Text = OCR1.Text;
                OCR1.Dispose();
                return;
            }
            catch (ArgumentException ex)
            {
                // Syntax error in the regular expression
            }

        //送值  

string postdata = string.Format("service=direct/0/Login/form&sp=S0&Form0=serialField,passwordField,annexPwdField,

submit&serialField={0}&passwordField={1}&annexPwdField={2}&submit=+%B5%C7%C2%BC+",

     mobile.Trim(), passwd, vcode);
  string htmldoc = httpService.postpage(homepageurl, postdata, ref currentcookie, proxy);
          
          


        }
    }

 

转载于:https://www.cnblogs.com/1011004519/archive/2008/08/07/1262699.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/262795.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

浅谈微信小程序生命周期

之前在做微信小程序的时候&#xff0c;一直对生命周期里面的onLoad&#xff0c;onShow&#xff0c;onUnload不是很理解。比如说什么时候会触发onUnload。 经过一段时间的测试发现&#xff0c;普通页面的onUnload在三种情况下会触发。 某一个页面跳转到tabBar页面&#xff0c;根…

POJ 1013 Counterfeit Dollar 称硬币

12个硬币&#xff0c;有一个假的 或轻或重&#xff0c;找出假硬币 开始用的模拟&#xff0c;考虑很多情况 后来&#xff0c;lmy说轻的-1&#xff0c;重的1&#xff0c;学数学的看什么都是数字&#xff0c;orz 模拟写的两个差不多的代码&#xff1a; (一&#xff09; #include&l…

DELPHI学习---结构类型

Structured types (结构类型) 结构类型的一个实例可包含多个值。结构类型包括集合、数组、记录&#xff0c;也包括类、类引用&#xff08;class-reference&#xff09; 和接口类型。除了集合只能包含有序值以外&#xff0c;结构类型可以包含其它的结构类型&#xff0c;且结构的…

ios学习笔记block回调的应用(一个简单的例子)

一、什么是Blocks Block是一个C级别的语法以及运行时的一个特性&#xff0c;和标准C中的函数&#xff08;函数指针&#xff09;类似&#xff0c;但是其运行需要编译器和运行时支持&#xff0c;从ios4.0开始就很好的支持Block。 二、在ios开发中&#xff0c;什么情况下使用…

vue定义global.js,挂载在vue原型上面使用

首先在src目录下创建global目录&#xff0c;在global目录下创建index.js。 export default {install(Vue) {var that this// 1. 添加全局方法或属性// ue.global this// 2. 添加全局资源// 3. 注入组件Vue.mixin({created() {this.global that}})// 大于一的整数验证&#x…

Configuration、SessionFactory、Session

org.hibernate.cfg Class Configuration An instance of Configuration allows(允许) the application to specify properties and mapping documents to be used when creating a SessionFactory. Usually an application will create a single Configuration, build a singl…

函数声明指令(stdcall, cdecl,pascal,register)

指令 参数存放位置 参数传递顺序 参数内存管理 适用地点registerCPU寄存器从左到右被调用者默认&#xff0c;published 属性存取方法必须使用pascal栈从左到右被调用者向后兼容cdecl栈从右到左调用者调用 C 共享库stdcall栈从右到左被调用者API 调用safecall栈从右到左被调用…

uni-app相关

uni-app 中以下组件的高度是固定的&#xff0c;不可修改&#xff1a; 导航栏高度固定为 44pxtabBar 高度固定为 56px 状态栏比较特殊&#xff0c;是一个变量 .status_bar{height: var(--status-bar-height);width: 100%; } uni-app 使用 vue/cli 创建项目的时候&#xff0c;如果…

《Windows游戏编程大师技巧》三、Windows高级编程

Windows编程很绝的地方在于&#xff1a;你不用了解太多细节&#xff0c;就可以完成很多工作。使用资源资源就是你的程序代码结合在一起的多块数据&#xff0c;可以被程序本身在运行时加载。资源应当也放在程序的.EXE文件中的原因是&#xff1a;1.同时包含代码和数据的.EXE文件更…

结构型模式--装饰模式

下面先用java&#xff0c;然后用Objective&#xff0d;C行对装饰模式的讲解&#xff1a; 对于java的装饰模式讲解和使用比较详细和难度有点偏高&#xff0c;而对于Objective&#xff0d;C的装饰模式讲解和使用方面比较简单&#xff0c;而且和java的装饰模式略有差异&#xff0c…

ArcGIS.Server.9.2.DotNet自带例子分析(三、一)

目的&#xff1a; 1.arcgis server9.2 ADF的AddGraphics。 准备工作&#xff1a; 1.用ArcGis Server Manager或者ArcCatalog发布一个叫world的Map Service,并且把这个Service启动起来。 2.找到DeveloperKit\SamplesNET\Server\Web_Applications目录下的Common_AddGraphicsCShar…

linux 使用timedatectl 修改时区和时间

使用timedatectl可以进行如下常见操作 1.查看当前时间/日期/时区&#xff1a;timedatectl或者timedatectl status 2.查看所有可用时区&#xff1a;timedatectl list-timezones 3.设置时区&#xff1a;timedatectl set-timezone “Asia/Shanghai” 或者 timedatectl set-time…

aspose将datatable导出excel 比自己拼好的多 Bug少-。.net

using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.IO; using System.Data; using Aspose.Cells; /// <summary> ///OutFileDao 的摘要说明 /// </summary> publicclass OutFileDao { public OutFileDa…

【MVC】AJAX+PartialView实现商城首页的楼层加载

使用AJAX实现楼层加载的例子已经非常多&#xff0c;但是html代码大都是手动拼接的&#xff0c;编写不便&#xff0c;而且难以维护。 下面就使用AJAXPartialView来实现 1.html代码 <!--楼层1开始--> <div class"floor" id"floor1"></div>…

VS2008常用快捷键

如果有一天&#xff0c;你的鼠标被猫叼走了的时候&#xff0c;你会发现这些快捷键很有意思&#xff0c;你的鼠标在的时候这些可爱的快捷键会让你更方便。 命令行&#xff1a; Devenv 启动VS Studion Isqlw 启动SQL2000查询分析器 Sqlwb 启动SQL2005企业管理器 Inet…

给控件动态添加方法

新建一个窗体,添加如下方法 public void init() { FormBuildStringControl formStringControl; FormBuildButtonControl formButtonControl; FormBuildGroupControl formGroupControl; ; // Adding a group formGroupControl this.form().addControl(FormControlType::Group, …

整理:Android apk 框架 布局 集锦

2019独角兽企业重金招聘Python工程师标准>>> 看到好的技术教程就想分享一下&#xff0c;不喜勿喷&#xff01;谢谢配合&#xff0c;仅供菜鸟学习研究(^o^)/~ 友情推荐《爱加密》Android apk加密保护视频教程剪辑&#xff1a;http://www.ijiami.cn/Video?v3 Andro…

IE8不兼容你的网页 怎么办? - 简单开启兼容模式

自从用了IE8 整个世界都变了形.   呵呵,问题没那么严重,如果你的网站还来不及修改以适合IE8访问的时候,咱们可以通过非常简单的方法,加几行代码就可以让访问的IE8自动调用IE7的渲染模式[/b],这样可以保证最大的兼容性,方法如下:   只需要在页面中加入如下HTTP meta-tag:  …

springboot打war包汇总

概述 第一次用maven工具打war包&#xff0c;出现各种各样的问题&#xff0c;做个问题记录方便下次查看 maven 一开始用的maven是springboot默认的&#xff0c;在.m2下&#xff0c;要打包时才发现没有mvn指令。索性自己就重新装个maven&#xff0c;去官网下载&#xff0c;我安装…

学习Nutch不错的系列文章

1&#xff09;Nutch1.2二次开发详细攻略 &#xff08;1&#xff09;Windows平台下Cygwin环境的搭建 地址&#xff1a;http://www.cnblogs.com/streamhope/archive/2011/07/27/2118397.html &#xff08;2&#xff09;Windows平台下Nutch1.2的搭建 地址&#xff1a;http://www.c…