博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
浅析使用ASP.NET生成随机验证码图片
阅读量:5041 次
发布时间:2019-06-12

本文共 4021 字,大约阅读时间需要 13 分钟。

最近几天尝试着自己一个人开发项目,课外之余接触了很多以前课上没有教的课外知识,“程序员很多知识都是自学的”这句话一点没错,不管身处什么环境 和人群,都是次要的,许多时候我们少些抱怨、多些行动,一定会有很多意外收获,好了,分享一下今天的收获,希望大家不要嫌弃,上代码。

在ASP页面中生成图片验证码,需要用到System.Drawing命名空间下的很多类,首先我们需要新建一个CreateImage.aspx页面,在后台代码中定义用于生成验证码图片的方法,如下:



using System;using System.Collections;using System.Configuration;using System.Data;using System.Linq;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.HtmlControls;using System.Web.UI.WebControls;using System.Web.UI.WebControls.WebParts;using System.Xml.Linq;using System.Drawing;public partial class CreateImage : System.Web.UI.Page{    protected void Page_Load(object sender, EventArgs e)    {        //产生4位验证码        string CheckCode = CreateCode(4);        //用于验证        Session["code"] = CheckCode;        CreateImages(CheckCode);    }    ///     /// 产生验证码    ///     ///     /// 
public string CreateCode(int codeLength) { string so = "1,2,3,4,5,6,7,8,9,0,a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z,A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z"; string[] strArray = so.Split(','); string code = ""; Random rand = new Random(); for (int i = 0; i < codeLength; i++) { //Random.Next(minValue,maxValue); //一个大于或等于 minValue 且小于 maxValue 的 32 位带符号整数,即:返回的值范围包括 minValue 但不包括 maxValue。如果 //minValue 等于 maxValue,则返回 minValue。 code += strArray[rand.Next(0, strArray.Length)]; } return code; } /// /// 产生验证图片 /// /// public void CreateImages(string code) { //创建一个Bitmap新实例 Bitmap image = new Bitmap(60, 20); Graphics g = Graphics.FromImage(image); WebColorConverter ww = new WebColorConverter(); //清楚整个绘图面,并以制定颜色填充 g.Clear((Color)ww.ConvertFromString("#FAE264")); Random rand = new Random(); //画图片的背景噪音线 for (int i = 0; i < 12; i++) { int x1 = rand.Next(image.Width); int x2 = rand.Next(image.Height); int y1 = rand.Next(image.Width); int y2 = rand.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 = rand.Next(image.Width); int y = rand.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(); } #region Web 窗体设计器生成的代码 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}

以上是CreateImage.aspx文件的后台代码,完成上述方法后,在页面里调用方法,只需要添加<img src="CreateImage.aspx" align="middle"/>,即可显示生成的验证码图片,每次刷新都会随机产生不同的验证码,如下:

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="CreateImage.aspx.cs" Inherits="CreateImage" %>    CheckImage    
 OK,这样我们就完成了ASP.NET生成验证码,在浏览器里运行一把试试,是不是很爽呢?当我们在文本框里输入验证码后,提交到下一个页面,取出Session["code"]里的字符串验证一下用户是否输入正确就可以了,呵呵,欢迎大家经常交流,还有不明白的可以给我留言,也希望多认识认识编程界的大哥大姐们,叫我“淘小鸡”。

转载于:https://www.cnblogs.com/taoxiaoji/archive/2010/12/04/1896454.html

你可能感兴趣的文章
selenium IDE常用命令
查看>>
开始写博客了
查看>>
Python selenium之css定位
查看>>
UVA 1525 Falling Leaves
查看>>
03-数据基础
查看>>
CentOS上yum方式安装配置LNMP
查看>>
Spring SpringMvc Hibernate整合
查看>>
Gradle 使用Maven本地缓存
查看>>
程序猿编程十大原则
查看>>
hdu1044
查看>>
MVC+EF之Attribute
查看>>
print_r 打印对象
查看>>
zTree——学习记录之一
查看>>
C++的IO操作
查看>>
v-cloakd的应用场景和使用方法
查看>>
BZOJ.3998.[TJOI2015]弦论(后缀自动机)
查看>>
localStorage登录页记住密码(艺博会)
查看>>
JSON.parse()与JSON.stringify()的区别
查看>>
json对象的获取
查看>>
php读取文件内容的三种方式(转)
查看>>