<span id="mktg5"></span>

<i id="mktg5"><meter id="mktg5"></meter></i>

        <label id="mktg5"><meter id="mktg5"></meter></label>
        最新文章專題視頻專題問答1問答10問答100問答1000問答2000關鍵字專題1關鍵字專題50關鍵字專題500關鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關鍵字專題關鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
        問答文章1 問答文章501 問答文章1001 問答文章1501 問答文章2001 問答文章2501 問答文章3001 問答文章3501 問答文章4001 問答文章4501 問答文章5001 問答文章5501 問答文章6001 問答文章6501 問答文章7001 問答文章7501 問答文章8001 問答文章8501 問答文章9001 問答文章9501
        當前位置: 首頁 - 科技 - 知識百科 - 正文

        asp.net下中文驗證碼,免費開源代碼

        來源:懂視網 責編:小采 時間:2020-11-27 22:45:33
        文檔

        asp.net下中文驗證碼,免費開源代碼

        asp.net下中文驗證碼,免費開源代碼:using System; using System.Data; using System.Configuration; using System.Collections; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System
        推薦度:
        導讀asp.net下中文驗證碼,免費開源代碼:using System; using System.Data; using System.Configuration; using System.Collections; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System

        using System;
        using System.Data;
        using System.Configuration;
        using System.Collections;
        using System.Web;
        using System.Web.Security;
        using System.Web.UI;
        using System.Web.UI.WebControls;
        using System.Web.UI.WebControls.WebParts;
        using System.Web.UI.HtmlControls;
        using System.Text;
        using System.Drawing;

        public partial class CnCode : System.Web.UI.Page
        {
        protected void Page_Load(object sender, EventArgs e)
        {
        //獲取GB2312編碼頁(表) 
        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[])));

        //輸出的控制臺 
        CreateImage(str1 + str2 + str3 + str4);

        }

        /* 
        此函數在漢字編碼范圍內隨機創建含兩個元素的十六進制字節數組,每個字節數組代表一個漢字,并將 
        四個字節數組存儲在object數組中。 
        參數:strlength,代表需要產生的漢字個數 
        */
        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; 

        }


        private void CreateImage(string checkCode)
        {
        int iwidth = (int)(checkCode.Length * 25);
        System.Drawing.Bitmap image = new System.Drawing.Bitmap(iwidth, 20);
        Graphics g = Graphics.FromImage(image);
        Font f = new System.Drawing.Font("Arial", 12, System.Drawing.FontStyle.Bold);
        Brush b = new System.Drawing.SolidBrush(Color.White);
        //g.FillRectangle(new System.Drawing.SolidBrush(Color.Blue),0,0,image.Width, image.Height);
        g.Clear(Color.Blue);
        g.DrawString(checkCode, f, b, 3, 3);

        Pen blackPen = new Pen(Color.Black, 0);
        Random rand = new Random();
        for (int i = 0; i < 4; i++)
        {
        int y = rand.Next(image.Height);
        g.DrawLine(blackPen, 0, y, image.Width, y);
        }

        System.IO.MemoryStream ms = new System.IO.MemoryStream();
        image.Save(ms, System.Drawing.Imaging.ImageFormat.Jpeg);
        Response.ClearContent();
        Response.ContentType = "image/png";
        Response.BinaryWrite(ms.ToArray());
        g.Dispose();
        image.Dispose();
        }

        該文章轉載自'大智の博客':http://www.csafe.cn/article.asp?id=1274 

        聲明:本網頁內容旨在傳播知識,若有侵權等問題請及時與本網聯系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

        文檔

        asp.net下中文驗證碼,免費開源代碼

        asp.net下中文驗證碼,免費開源代碼:using System; using System.Data; using System.Configuration; using System.Collections; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System
        推薦度:
        標簽: 中文 驗證碼 開源
        • 熱門焦點

        最新推薦

        猜你喜歡

        熱門推薦

        專題
        Top
        主站蜘蛛池模板: 免费羞羞视频网站| 亚洲VA综合VA国产产VA中| 一级做性色a爰片久久毛片免费| 在线亚洲精品视频| 五月天国产成人AV免费观看| 一级特黄aaa大片免费看| 永久免费av无码不卡在线观看| 好男人视频在线观看免费看片| 全部免费国产潢色一级| 亚洲色偷拍区另类无码专区| 国产亚洲精品a在线无码| 亚洲色图.com| AV激情亚洲男人的天堂国语| 男人天堂免费视频| 免费精品国产日韩热久久| 国产又粗又长又硬免费视频| 国产AV无码专区亚洲精品| 亚洲国产精品久久久久秋霞影院| 亚洲人成网站影音先锋播放| 亚洲国产精品成人久久久| 国产免费AV片在线观看| 免费看香港一级毛片| 亚洲一区精彩视频| a毛片久久免费观看| 久久国产乱子伦精品免费看| 女人18毛片水真多免费播放| 亚洲日本va在线观看| 无码国产精品一区二区免费虚拟VR| 久久精品国产精品亚洲艾草网| 亚洲七久久之综合七久久| 男女一进一出抽搐免费视频 | 国产亚洲综合色就色| xxxxx做受大片视频免费| 国内精品99亚洲免费高清| 亚洲无吗在线视频| 国产免费av片在线看| 亚洲国产天堂在线观看| 色欲色香天天天综合网站免费| 国产一级淫片视频免费看| 欧洲亚洲综合一区二区三区| 亚洲国产黄在线观看|