科技行者

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

知识库

知识库 安全导航

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

ASP.net 验证码(C#)

  • 扫一扫
    分享文章到微信

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

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

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

关键字: net asp Disconnect Marshal

  • 评论
  • 分享微博
  • 分享邮件
/* 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

  }

  }

    • 评论
    • 分享微博
    • 分享邮件
    邮件订阅

    如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。

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