当前位置: 首页 > 图文教程 > 网络编程 > ASP.NET > asp.net下生成英文字符数字验证码的代码

ASP.NET
ASP.NET实现数据图表a
ASP.NET实现数据图表1
Kbuilder.cs GIVE ME K
WebForm1.aspx K LINE YISHI GIEVE ME
ASP.NET实现数据图表b
today study 2005.03.03
ActiveX 组件复习笔记.1
Direct3D学习笔记(二)我们这里可以编写一个完全意义上的Direct3D程序了。
HttpContext类包含了个别HTTP请求的所有特定HTTP信息。
实现自定义分页(如:改变传统datagrid的分页显示、通过A-Z的字母来分页等)、选择...
关于Format字符串和Xml文件的解析(粗略)
wrox asp.net 2 beta preview study section 3
整合重复代码,生成自定义的列(组件)整合重复代码,生成自定义的datagrid(组件...
递归法提升密码穷举算法性能
如何用UltraEdit编译C#源程序
添加删除、更新按钮的提示确认信息,以及DATAGRID的添加、插入、更新、删除操作。
WebBrowser应用
My Composite in C#
DBForm的设计来源以及主要构想
.net中交易处理的解决方案

ASP.NET 中的 asp.net下生成英文字符数字验证码的代码


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2010-01-10   浏览: 73 ::
收藏到网摘: n/a

用了asp.net随机数,获取指定位数的字母或数字以后,进行图片输出的验证码函数。

复制代码 代码如下:

using System;
using System.Data;
using System.Configuration;
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.Drawing.Drawing2D;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
Bitmap bmp = new Bitmap(50, 25);
Graphics g = Graphics.FromImage(bmp);
SolidBrush sb = new SolidBrush(getColor());
g.DrawString(CheckNumber(), new Font("宋体", 16), sb, 0, 0);
bmp.Save(Response.OutputStream, System.Drawing.Imaging.ImageFormat.Gif);
}
public static string CheckNumber()
{
string checkcode = "abcdefghijklmnopqrstuvwxyz0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
int len = 4;
string tmpstr = "";
int iRandNum;
Random rnd = new Random();
for (int i = 0; i < len; i++)
{
iRandNum = rnd.Next(checkcode.Length);
tmpstr += checkcode[iRandNum];
}
return tmpstr;
}
private Color getColor()
{
Random r = new Random();
return Color.FromArgb(r.Next(256), r.Next(256), r.Next(256));
}
}