科技行者

行者学院 转型私董会 科技行者专题报道 网红大战科技行者

知识库

知识库 安全导航

至顶网软件频道ASP.net 验证码(C#)

ASP.net 验证码(C#)

  • 扫一扫
    分享文章到微信

  • 扫一扫
    关注官方公众号
    至顶头条

 /* Copyright all(c) 2005 ZhongFeng, http://blog.csdn.net/SW515 */

作者:www.soft6.com 来源:www.soft6.com 2007年9月25日

关键字: net asp UltraSPARC

  • 评论
  • 分享微博
  • 分享邮件
 /* Copyright all(c) 2005 ZhongFeng, http://blog.csdn.net/SW515 */

  public class ValidateCode : System.Web.UI.Page

  {

  private void Page_Load(object sender, System.EventArgs e)

  草地chin ai tp ower6yv972b

  #region

  override protected void OnInit(EventArgs e)

  {

  //

  // CODEGEN: 该调用是 asp.NET web 窗体设计器所必需的。

  //

  InitializeComponent();

  base.OnInit(e);

  }

  ///

  /// 设计器支持所需的方法 - 不要使用代码编辑器修改

  /// 此方法的内容。

  ///

  private void InitializeComponent()

  {

  this.Load += new System.EventHandler(this.Page_Load);

  }

  #endregion草地chin ai tp ower6yv972b

  private string GenerateCheckCode()

  {

  int number;

  char code;

  string checkCode = String.Empty;草地chin ai tp ower6yv972b

  System.Random random = new Random();草地chin ai tp ower6yv972b

  for(int i=0; i<5; i++)

  {

  number = random.Next();草地chin ai tp ower6yv972b

  if(number % 2 == 0)

  code = (char)('0' + (char)(number % 10));

  else

  code = (char)('A' + (char)(number % 26));草地chin ai tp ower6yv972b

  checkCode += code.ToString();

  }草地chin ai tp ower6yv972b

  Response.Cookies.Add(new HttpCookie("CheckCode", checkCode));草地chin ai tp ower6yv972b

  return checkCode;

  }草地chin ai tp ower6yv972b

  private void CreateCheckCodeImage(string checkCode)

  {

  if(checkCode == null || checkCode.Trim() == String.Empty)

  return;草地chin ai tp ower6yv972b

  System.Drawing.Bitmap image = new System.Drawing.Bitmap((int)Math.Ceiling((checkCode.Length * 12.5)), 22);

  Graphics g = Graphics.FromImage(image);草地chin ai tp ower6yv972b

  try

  {

  //生成随机生成器

  Random random = new Random();草地chin ai tp ower6yv972b

  //清空图片背景色

  g.Clear(Color.White);草地chin ai tp ower6yv972b

  //画图片的背景噪音线

  for(int i=0; i<25; 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);草地chin ai tp ower6yv972b

  g.DrawLine(new Pen(Color.Silver), x1, y1, x2, y2);

  }草地chin ai tp ower6yv972b

  Font font = new System.Drawing.Font("Arial", 12, (System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic));

  System.Drawing.Drawing2D.LinearGradientBrush brush = new System.Drawing.Drawing2D.LinearGradientBrush(new Rectangle(0, 0, image.Width, image.Height), Color.Blue, Color.DarkRed, 1.2f, true);

  g.DrawString(checkCode, font, brush, 2, 2);草地chin ai tp ower6yv972b

  //画图片的前景噪音点

  for(int i=0; i<100; i++)

  {

  int x = random.Next(image.Width);

  int y = random.Next(image.Height);草地chin ai tp ower6yv972b

  image.SetPixel(x, y, Color.FromArgb(random.Next()));

  }草地chin ai tp ower6yv972b

  //画图片的边框线

  g.DrawRectangle(new Pen(Color.Silver), 0, 0, image.Width - 1, image.Height - 1);草地chin ai tp ower6yv972b

  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());

  }

  finally

  }

  }

    • 评论
    • 分享微博
    • 分享邮件
    闂備緡鍙庨崰鏇炩枎閵忋垺濯奸柕蹇嬪€栭~锟�

    婵犵鈧啿鈧綊鎮樻径鎰畺闁靛ň鏅滄慨婊堟偨椤栨稓鎽冮柟鐑╂櫊瀹曟岸宕堕埡鍌滄殸闂佽鍨伴崢鏍姳閿涘嫭鍠嗘い銈呭姬婵☆偅婢樺Λ妤呮偂濞嗘挸瀚夐柍褜鍓熷顒侊紣娓氣偓閻涙捇鏌涘┑鍛樂缂佹鐭傞獮搴ㄥ焵椤掑嫬瀚夋い鏍ㄧ懁缁诲棝鏌熼褍鐏茬紒杈ㄧ箞閺屽洭鏁愰崟顓犳澖闁荤姳闄嶉崹钘壩i崟顖涘殜闁硅泛顫曢埀顒€锕︾槐鏃堝箣閻愬弬妤呮煛閸偄鐏﹂柛瀣墬缁傛帞鎹勯搹瑙勵啈闂佸搫瀚烽崹閬嶅磻瀹ュ鍎嶉柛鏇ㄥ墯娴犳ê霉閿濆棗鈻曢柍褜鍓氶弻銊ф閻愬鈻曢悗锝傛櫇椤忛亶鏌曢崱顓熷

    重磅专题
    往期文章
    最新文章