asp.net下中文驗證碼,免費(fèi)開源代碼
更新時間:2007年04月13日 00:00:00 作者:
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.Text;
using System.Drawing;
public partial class CnCode : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
//獲取GB2312編碼頁(表)
Encoding gb = Encoding.GetEncoding("gb2312");
//調(diào)用函數(shù)產(chǎn)生4個隨機(jī)中文漢字編碼
object[] bytes = CreateRegionCode(4);
//根據(jù)漢字編碼的字節(jié)數(shù)組解碼出中文漢字
string str1 = gb.GetString((byte[])Convert.ChangeType(bytes[0], typeof(byte[])));
string str2 = gb.GetString((byte[])Convert.ChangeType(bytes[1], typeof(byte[])));
string str3 = gb.GetString((byte[])Convert.ChangeType(bytes[2], typeof(byte[])));
string str4 = gb.GetString((byte[])Convert.ChangeType(bytes[3], typeof(byte[])));
//輸出的控制臺
CreateImage(str1 + str2 + str3 + str4);
}
/*
此函數(shù)在漢字編碼范圍內(nèi)隨機(jī)創(chuàng)建含兩個元素的十六進(jìn)制字節(jié)數(shù)組,每個字節(jié)數(shù)組代表一個漢字,并將
四個字節(jié)數(shù)組存儲在object數(shù)組中。
參數(shù):strlength,代表需要產(chǎn)生的漢字個數(shù)
*/
public static object[] CreateRegionCode(int strlength)
{
//定義一個字符串?dāng)?shù)組儲存漢字編碼的組成元素
string[] rBase=new String [16]{"0","1","2","3","4","5","6","7","8","9","a","b","c","d","e","f"};
Random rnd=new Random();
//定義一個object數(shù)組用來
object[] bytes=new object[strlength];
/**//*每循環(huán)一次產(chǎn)生一個含兩個元素的十六進(jìn)制字節(jié)數(shù)組,并將其放入bject數(shù)組中
每個漢字有四個區(qū)位碼組成
區(qū)位碼第1位和區(qū)位碼第2位作為字節(jié)數(shù)組第一個元素
區(qū)位碼第3位和區(qū)位碼第4位作為字節(jié)數(shù)組第二個元素
*/
for(int i=0;i<strlength;i++)
{
//區(qū)位碼第1位
int r1=rnd.Next(11,14);
string str_r1=rBase[r1].Trim();
//區(qū)位碼第2位
rnd=new Random(r1*unchecked((int)DateTime.Now.Ticks)+i);//更換隨機(jī)數(shù)發(fā)生器的種子避免產(chǎn)生重復(fù)值
int r2;
if (r1==13)
{
r2=rnd.Next(0,7);
}
else
{
r2=rnd.Next(0,16);
}
string str_r2=rBase[r2].Trim();
//區(qū)位碼第3位
rnd=new Random(r2*unchecked((int)DateTime.Now.Ticks)+i);
int r3=rnd.Next(10,16);
string str_r3=rBase[r3].Trim();
//區(qū)位碼第4位
rnd=new Random(r3*unchecked((int)DateTime.Now.Ticks)+i);
int r4;
if (r3==10)
{
r4=rnd.Next(1,16);
}
else if (r3==15)
{
r4=rnd.Next(0,15);
}
else
{
r4=rnd.Next(0,16);
}
string str_r4=rBase[r4].Trim();
//定義兩個字節(jié)變量存儲產(chǎn)生的隨機(jī)漢字區(qū)位碼
byte byte1=Convert.ToByte(str_r1 + str_r2,16);
byte byte2=Convert.ToByte(str_r3 + str_r4,16);
//將兩個字節(jié)變量存儲在字節(jié)數(shù)組中
byte[] str_r=new byte[]{byte1,byte2};
//將產(chǎn)生的一個漢字的字節(jié)數(shù)組放入object數(shù)組中
bytes.SetValue(str_r,i);
}
return bytes;
}
private void CreateImage(string checkCode)
{
int iwidth = (int)(checkCode.Length * 25);
System.Drawing.Bitmap image = new System.Drawing.Bitmap(iwidth, 20);
Graphics g = Graphics.FromImage(image);
Font f = new System.Drawing.Font("Arial", 12, System.Drawing.FontStyle.Bold);
Brush b = new System.Drawing.SolidBrush(Color.White);
//g.FillRectangle(new System.Drawing.SolidBrush(Color.Blue),0,0,image.Width, image.Height);
g.Clear(Color.Blue);
g.DrawString(checkCode, f, b, 3, 3);
Pen blackPen = new Pen(Color.Black, 0);
Random rand = new Random();
for (int i = 0; i < 4; i++)
{
int y = rand.Next(image.Height);
g.DrawLine(blackPen, 0, y, image.Width, y);
}
System.IO.MemoryStream ms = new System.IO.MemoryStream();
image.Save(ms, System.Drawing.Imaging.ImageFormat.Jpeg);
Response.ClearContent();
Response.ContentType = "image/png";
Response.BinaryWrite(ms.ToArray());
g.Dispose();
image.Dispose();
}
}
該文章轉(zhuǎn)載自'大智の博客':http://www.csafe.cn/article.asp?id=1274
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.Text;
using System.Drawing;
public partial class CnCode : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
//獲取GB2312編碼頁(表)
Encoding gb = Encoding.GetEncoding("gb2312");
//調(diào)用函數(shù)產(chǎn)生4個隨機(jī)中文漢字編碼
object[] bytes = CreateRegionCode(4);
//根據(jù)漢字編碼的字節(jié)數(shù)組解碼出中文漢字
string str1 = gb.GetString((byte[])Convert.ChangeType(bytes[0], typeof(byte[])));
string str2 = gb.GetString((byte[])Convert.ChangeType(bytes[1], typeof(byte[])));
string str3 = gb.GetString((byte[])Convert.ChangeType(bytes[2], typeof(byte[])));
string str4 = gb.GetString((byte[])Convert.ChangeType(bytes[3], typeof(byte[])));
//輸出的控制臺
CreateImage(str1 + str2 + str3 + str4);
}
/*
此函數(shù)在漢字編碼范圍內(nèi)隨機(jī)創(chuàng)建含兩個元素的十六進(jìn)制字節(jié)數(shù)組,每個字節(jié)數(shù)組代表一個漢字,并將
四個字節(jié)數(shù)組存儲在object數(shù)組中。
參數(shù):strlength,代表需要產(chǎn)生的漢字個數(shù)
*/
public static object[] CreateRegionCode(int strlength)
{
//定義一個字符串?dāng)?shù)組儲存漢字編碼的組成元素
string[] rBase=new String [16]{"0","1","2","3","4","5","6","7","8","9","a","b","c","d","e","f"};
Random rnd=new Random();
//定義一個object數(shù)組用來
object[] bytes=new object[strlength];
/**//*每循環(huán)一次產(chǎn)生一個含兩個元素的十六進(jìn)制字節(jié)數(shù)組,并將其放入bject數(shù)組中
每個漢字有四個區(qū)位碼組成
區(qū)位碼第1位和區(qū)位碼第2位作為字節(jié)數(shù)組第一個元素
區(qū)位碼第3位和區(qū)位碼第4位作為字節(jié)數(shù)組第二個元素
*/
for(int i=0;i<strlength;i++)
{
//區(qū)位碼第1位
int r1=rnd.Next(11,14);
string str_r1=rBase[r1].Trim();
//區(qū)位碼第2位
rnd=new Random(r1*unchecked((int)DateTime.Now.Ticks)+i);//更換隨機(jī)數(shù)發(fā)生器的種子避免產(chǎn)生重復(fù)值
int r2;
if (r1==13)
{
r2=rnd.Next(0,7);
}
else
{
r2=rnd.Next(0,16);
}
string str_r2=rBase[r2].Trim();
//區(qū)位碼第3位
rnd=new Random(r2*unchecked((int)DateTime.Now.Ticks)+i);
int r3=rnd.Next(10,16);
string str_r3=rBase[r3].Trim();
//區(qū)位碼第4位
rnd=new Random(r3*unchecked((int)DateTime.Now.Ticks)+i);
int r4;
if (r3==10)
{
r4=rnd.Next(1,16);
}
else if (r3==15)
{
r4=rnd.Next(0,15);
}
else
{
r4=rnd.Next(0,16);
}
string str_r4=rBase[r4].Trim();
//定義兩個字節(jié)變量存儲產(chǎn)生的隨機(jī)漢字區(qū)位碼
byte byte1=Convert.ToByte(str_r1 + str_r2,16);
byte byte2=Convert.ToByte(str_r3 + str_r4,16);
//將兩個字節(jié)變量存儲在字節(jié)數(shù)組中
byte[] str_r=new byte[]{byte1,byte2};
//將產(chǎn)生的一個漢字的字節(jié)數(shù)組放入object數(shù)組中
bytes.SetValue(str_r,i);
}
return bytes;
}
private void CreateImage(string checkCode)
{
int iwidth = (int)(checkCode.Length * 25);
System.Drawing.Bitmap image = new System.Drawing.Bitmap(iwidth, 20);
Graphics g = Graphics.FromImage(image);
Font f = new System.Drawing.Font("Arial", 12, System.Drawing.FontStyle.Bold);
Brush b = new System.Drawing.SolidBrush(Color.White);
//g.FillRectangle(new System.Drawing.SolidBrush(Color.Blue),0,0,image.Width, image.Height);
g.Clear(Color.Blue);
g.DrawString(checkCode, f, b, 3, 3);
Pen blackPen = new Pen(Color.Black, 0);
Random rand = new Random();
for (int i = 0; i < 4; i++)
{
int y = rand.Next(image.Height);
g.DrawLine(blackPen, 0, y, image.Width, y);
}
System.IO.MemoryStream ms = new System.IO.MemoryStream();
image.Save(ms, System.Drawing.Imaging.ImageFormat.Jpeg);
Response.ClearContent();
Response.ContentType = "image/png";
Response.BinaryWrite(ms.ToArray());
g.Dispose();
image.Dispose();
}
}
該文章轉(zhuǎn)載自'大智の博客':http://www.csafe.cn/article.asp?id=1274
您可能感興趣的文章:
- asp.net(C#) 生成隨機(jī)驗證碼的代碼
- ASP.net 驗證碼實現(xiàn)代碼(C#)
- Asp.net(C#)實現(xiàn)驗證碼功能代碼
- asp.net 簡單驗證碼驗證實現(xiàn)代碼
- asp.net 驗證碼生成和刷新及驗證
- asp最簡單的生成驗證碼代碼
- ASP.NET中的無刷新驗證碼的開發(fā)(完整代碼)
- asp無組件生成驗證碼 GIF圖片格式
- asp.net ajax實現(xiàn)無刷新驗證碼
- asp.net 圖片驗證碼的HtmlHelper
- asp.net生成驗證碼(純數(shù)字)
- asp.net中3種驗證碼示例(實現(xiàn)代碼)(數(shù)字,數(shù)字字母混和,漢字)
- ASP.NET MVC驗證碼功能實現(xiàn)代碼
- asp.net驗證碼的簡單制作
- ASP實現(xiàn)加法驗證碼
相關(guān)文章
ASP.NET實現(xiàn)級聯(lián)下拉框效果實例講解
這篇文章主要為大家詳細(xì)介紹了ASP.NET實現(xiàn)級聯(lián)下拉框效果實例,文中示例代碼介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們可以參考一下2015-09-09Asp.Net網(wǎng)站優(yōu)化系列之?dāng)?shù)據(jù)庫的優(yōu)化措施與索引優(yōu)化方法
索引的作用就類似于書的目錄,書的目錄會按照章節(jié)的順序排列,會指想某一張的位置。這樣如果在一本數(shù)百頁的書里面查找某個章節(jié)位置的時候,我們就可以只掃描書的目錄,掃描的范圍縮小了n倍,查詢的效率自然就提高了。2010-06-06asp.net文件上傳帶進(jìn)度條實現(xiàn)案例(多種風(fēng)格)
這篇文章主要講解了asp.net文件上傳帶進(jìn)度條實現(xiàn)案例,有不同風(fēng)格的進(jìn)度條,一定有一款最適合你,感興趣的小伙伴們可以參考一下2015-09-09ASP.NET檢測到不安全 Request.Form 值解決方案匯總
這篇文章主要介紹了ASP.NET檢測到不安全 Request.Form 值解決方案匯總 ,十分的全面,需要的朋友可以參考下2015-06-06asp.net使用for循環(huán)實現(xiàn)Datalist的分列顯示功能
工程業(yè)績--用for循環(huán)代替了DataList多列顯示,得到2行四列的表格,需要內(nèi)存表的8行數(shù)據(jù)2009-12-12