.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.Web.UI.HtmlControls;
          using System.Drawing;
          using System.IO;
          namespace zj123.UI.config
          {
              public partial class VilidateCode : System.Web.UI.Page
              {
                  protected void Page_Load(object sender, EventArgs e)
                  {
                      string checkCode = CreateCode(5);
                      Session["CheckCode"] = checkCode.ToLower();
                      CreateImage(checkCode);
                  }

                  /*產生驗證碼*/
                  public string CreateCode(int codeLength)
                  {

                      //string so = "2,3,4,5,6,7,8,9,0,A,B,C,D,E,F,G,H,J,K,L,M,N,P,Q,R,S,T,U,V,W,X,Y,Z";
                      string so = "1,2,3,4,5,6,7,8,9,0";
                      string[] strArr = so.Split(',');
                      string code = "";
                      Random rand = new Random();
                      for (int i = 0; i < codeLength; i++)
                      {
                          code += strArr[rand.Next(0, strArr.Length)];
                      }
                      return code;
                  }

                  /*產生驗證圖片*/
                  public void CreateImage(string code)
                  {

                      Bitmap image = new Bitmap(80, 20);
                      Graphics g = Graphics.FromImage(image);
                      WebColorConverter ww = new WebColorConverter();
                      g.Clear((Color)ww.ConvertFromString("#FAE264"));

                      Random random = new Random();
                      //畫圖片的背景噪音線
                      for (int i = 0; i < 12; 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.LightGray), x1, y1, x2, y2);
                      }
                      Font font = new Font("Arial", 15, FontStyle.Bold | FontStyle.Italic);
                      System.Drawing.Drawing2D.LinearGradientBrush brush = new System.Drawing.Drawing2D.LinearGradientBrush(
                          new Rectangle(0, 0, image.Width, image.Height), Color.Blue, Color.Gray, 1.2f, true);
                      g.DrawString(code, font, brush, 0, 0);

                      //畫圖片的前景噪音點
                      //for (int i = 0; i < 10; i++)
                      //{
                      //    int x = random.Next(image.Width);
                      //    int y = random.Next(image.Height);
                      //    image.SetPixel(x, y, Color.White);
                      //}

                      //畫圖片的邊框線
                      // 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);
                      Response.ClearContent();
                      Response.ContentType = "image/Gif";
                      Response.BinaryWrite(ms.ToArray());
                      g.Dispose();
                      image.Dispose();
                  }
              }


          }

          posted on 2009-04-15 14:56 sanmao 閱讀(276) 評論(0)  編輯  收藏

          只有注冊用戶登錄后才能發表評論。


          網站導航:
           

          常用鏈接

          留言簿(5)

          隨筆分類

          隨筆檔案

          搜索

          •  

          最新評論

          閱讀排行榜

          評論排行榜

          主站蜘蛛池模板: 米易县| 贞丰县| 陵水| 吉林省| 新乡市| 土默特左旗| 清丰县| 马鞍山市| 普洱| 饶平县| 宣化县| 扶沟县| 大姚县| 绥中县| 建湖县| 丹凤县| 达日县| 郓城县| 封丘县| 盐源县| 龙门县| 都匀市| 乃东县| 腾冲县| 高安市| 莱阳市| 贵州省| 浦县| 奉新县| 丰台区| 江达县| 无棣县| 莒南县| 景东| 衡阳市| 英吉沙县| 嘉善县| 安仁县| 高陵县| 香港 | 卓资县|