ASP.NET里面做验证码代码是什么

就是如何做验证码,诚心请教!!!!11理论明白了,能不能写下代码,兄弟帮帮忙,我新手。... 就是如何做验证码,诚心请教!!!!11
理论明白了,能不能写下代码,兄弟帮帮忙,我新手。
展开
 我来答
23...5@qq.com
推荐于2016-10-29 · TA获得超过141个赞
知道答主
回答量:136
采纳率:0%
帮助的人:144万
展开全部
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.Drawing.Drawing2D;
using System.IO;

public partial class admin_CheckCode : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
CreateCheckCode(GenerateCheckCode());
}

private string GenerateCheckCode()
{
string checkCode;
Random rd = new Random(DateTime.Now.Millisecond);//使用当前时间的毫秒为随机种子可避免生成相同的随机数
checkCode = rd.Next(10000, 99999).ToString();
Session["checkCode"] = checkCode;
Response.Cookies.Add(new HttpCookie("checkCode", checkCode));
return checkCode;
}

private void CreateCheckCode(string checkCode)
{
if (checkCode == null || checkCode.Trim() == String.Empty)
{
return;
}
//Ceiling(double/decimal):返回大于或等于指定数字的最小整数
Bitmap bmp = new Bitmap((int)Math.Ceiling(checkCode.Length * 10.0), 22);
Graphics g = Graphics.FromImage(bmp);
try
{
Random rd=new Random(DateTime.Now.Millisecond);
g.Clear(Color.White);
//画图片背景噪音线
for (int i = 0; i < 25; i++)
{
int x1 = rd.Next(bmp.Width);
int y1 = rd.Next(bmp.Height);
int x2 = rd.Next(bmp.Width);
int y2 = rd.Next(bmp.Height);
g.DrawLine(new Pen(Color.Silver), x1, y1, x2, y2);
}

//画验证码
Font font = new Font("Arial", 12, (FontStyle.Bold | FontStyle.Italic));
LinearGradientBrush brush = new LinearGradientBrush(new Rectangle(0, 0, bmp.Width, bmp.Height), Color.DarkBlue, Color.CornflowerBlue, 1.2f, true);
g.DrawString(checkCode, font, brush, 0, 2);

//画前景噪音点
for (int i = 0; i < 100; i++)
{
int x = rd.Next(bmp.Width);
int y = rd.Next(bmp.Height);
bmp.SetPixel(x, y, Color.FromArgb(rd.Next()));
}

//画图片的边框线
g.DrawRectangle(new Pen(Color.Silver), 0, 0, bmp.Width - 1, bmp.Height - 1);

MemoryStream ms = new MemoryStream();
bmp.Save(ms, System.Drawing.Imaging.ImageFormat.Gif);
Response.ClearContent();
Response.ContentType = "image/gif";
Response.BinaryWrite(ms.ToArray());
}
catch
{
}
finally
{
g.Dispose();
bmp.Dispose();
}

}
}
这个是CheckCode.aspx.cs的代码,CheckCode.aspx不用写任何代码,是用的时候用这段代码<img src="CheckCode.aspx" id="safecode" alt=""/>,至于验证的话看看你的随机码是放在那里,就像上面CheckCode.aspx.cs中是放在Session中的,你也可以放cookie中
jack87918
2010-02-24 · TA获得超过2048个赞
知道小有建树答主
回答量:1618
采纳率:100%
帮助的人:1447万
展开全部
验证码?
给你举个简单点的例子,四个字符的验证码:

你把字母和数字全部放到一个数组里面;
然后生成一个随机数,随机数所代表的就是数组中某一个元素的下标;
这样生成四个随机数,也就生成了四个字符(数字加字母);
把四个字符加在一起就是一段验证码了.

随便给你找了段代码

public string RandomNum(int n) //
{
//定义一个包括数字、大写英文字母和小写英文字母的字符串
string strchar = "0,1,2,3,4,5,6,7,8,9,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";
//将strchar字符串转化为数组
//String.Split 方法返回包含此实例中的子字符串(由指定Char数组的元素分隔)的 String 数组。
string[] VcArray = strchar.Split(',');
string VNum = "";
//记录上次随机数值,尽量避免产生几个一样的随机数
int temp = -1;
//采用一个简单的算法以保证生成随机数的不同
Random rand = new Random();
for (int i = 1; i < n + 1; i++)
{
if (temp != -1)
{
//unchecked 关键字用于取消整型算术运算和转换的溢出检查。
//DateTime.Ticks 属性获取表示此实例的日期和时间的刻度数。
rand = new Random(i * temp * unchecked((int)DateTime.Now.Ticks));
}
//Random.Next 方法返回一个小于所指定最大值的非负随机数。
int t = rand.Next(61);
if (temp != -1 && temp == t)
{
return RandomNum(n);
}
temp = t;
VNum += VcArray[t];
}
return VNum;//返回生成的随机数
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式