實(shí)際上關(guān)于asp.net驗(yàn)證碼制作的文章已經(jīng)很多很多了,但是今天還是要和大家繼續(xù)分享,親,可以綜合幾篇實(shí)例,編寫出適用于自己網(wǎng)站的ASP.NET驗(yàn)證碼,大概也就兩大部分:
先建立一個(gè)asp.net窗體ValidateCode.aspx;不寫任何東西。直接在后臺(tái)ValidateCode.aspx.cs中寫如下代碼:
protected void Page_Load(object sender, EventArgs e)
{
string validateCode = CreateValidateCode();//生成驗(yàn)證碼
Bitmap bitmap = new Bitmap(imgWidth,imgHeight);//生成Bitmap圖像
DisturbBitmap(bitmap); //圖像背景
DrewValidateCode(bitmap,validateCode);//繪制驗(yàn)證碼圖像
bitmap.Save(Response.OutputStream,ImageFormat.Gif);//保存圖像,等待輸出
}
private int codeLen = 4;//驗(yàn)證碼長度
private int fineness = 85;//圖片清晰度
private int imgWidth = 48;//圖片寬度
private int imgHeight = 24;//圖片高度
private string fontFamily = "Times New Roman";//字體名稱
private int fontSize = 14;//字體大小
//private int fontStyle = 0;//字體樣式
private int posX = 0;//繪制起始坐標(biāo)X
private int posY = 0;//繪制坐標(biāo)Y
private string CreateValidateCode() //生成驗(yàn)證碼
{
string validateCode = "";
Random random = new Random();// 隨機(jī)數(shù)對(duì)象
for (int i = 0; i codeLen; i++)//循環(huán)生成每位數(shù)值
{
int n = random.Next(10);//數(shù)字
validateCode += n.ToString();
}
Session["vcode"] = validateCode;//保存驗(yàn)證碼 這Session是在前臺(tái)調(diào)用的。
return validateCode;// 返回驗(yàn)證碼
}
private void DisturbBitmap(Bitmap bitmap)//圖像背景
{
Random random = new Random();//通過隨機(jī)數(shù)生成
for (int i = 0; i bitmap.Width; i++)//通過循環(huán)嵌套,逐個(gè)像素點(diǎn)生成
{
for (int j = 0; j bitmap.Height; j++)
{
if (random.Next(90) = this.fineness)
bitmap.SetPixel(i, j, Color.LightGray);
}
}
}
private void DrewValidateCode(Bitmap bitmap, string validateCode)//繪制驗(yàn)證碼圖像
{
Graphics g = Graphics.FromImage(bitmap);//獲取繪制器對(duì)象
Font font = new Font(fontFamily, fontSize, FontStyle.Bold);//設(shè)置繪制字體
g.DrawString(validateCode, font, Brushes.Black, posX, posY);//繪制驗(yàn)證碼圖像
}
在Login.aspx窗體頁面中實(shí)現(xiàn)如下圖功能:
Login.aspx窗體前臺(tái):
//這個(gè)函數(shù)是在點(diǎn)擊驗(yàn)證碼圖片就會(huì)更換驗(yàn)證碼
//可以使用微軟自帶的jqury.js 下面jquery-1.4.1.min.js版本之上的。或者在jquery官網(wǎng)上下載就可以。
script src="styles/jquery-1.4.1.min.js" type="text/javascript">/script>
function f_refreshtype() {
var Image1 = document.getElementByIdx_x_x_x("img");
if (Image1 != null) {
Image1.src = Image1.src + "?";
}
}
---img src="ValidateCode.aspx" id="img" onclick="f_refreshtype()" width="50px"/>//調(diào)用函數(shù),實(shí)現(xiàn)更換驗(yàn)證碼
后臺(tái)代碼:點(diǎn)擊登錄驗(yàn)證用戶是否輸入正確。
string usercode = txtcode.Text.Trim();
if (usercode == Session["vcode"].ToString())//Session["vcode"]
{
}
其他代碼就是跟其他一樣。
以上就是跟大家分享的關(guān)于生成ASP.NET驗(yàn)證碼的過程,希望大家可以學(xué)以致用。
您可能感興趣的文章:- 一個(gè)簡單的ASP.NET驗(yàn)證碼
- asp.net mvc驗(yàn)證碼類使用
- ASP.NET驗(yàn)證碼實(shí)現(xiàn)(附源碼)
- 12306動(dòng)態(tài)驗(yàn)證碼啟發(fā)之ASP.NET實(shí)現(xiàn)動(dòng)態(tài)GIF驗(yàn)證碼(附源碼)
- ASP.NET驗(yàn)證碼(3種)
- asp.net 驗(yàn)證碼生成和刷新及驗(yàn)證
- ASP.net 驗(yàn)證碼實(shí)現(xiàn)代碼(C#)
- asp.net(C#) 生成隨機(jī)驗(yàn)證碼的代碼
- Asp.net(C#)實(shí)現(xiàn)驗(yàn)證碼功能代碼
- ASP.NET ashx實(shí)現(xiàn)無刷新頁面生成驗(yàn)證碼