識別code.aspx裡沒有內容略。
識別代碼.cs檔:
使用系統;
使用系統數據;
使用系統配置;
使用系統集合;
使用系統.Web;
使用 System.Web.Security;
使用 System.Web.UI;
使用 System.Web.UI.WebControls;
使用 System.Web.UI.WebControls.WebParts;
使用 System.Web.UI.HtmlControls;
使用系統繪圖;
使用系統.繪圖.成像;
使用系統.IO;
公用部分類別識別碼:System.Web.UI.Page
{
protected void Page_Load(物件發送者,EventArgs e)
{
字串 tmp = RndNum(4);
HttpCookie a = new HttpCookie("ImageV", tmp);
Response.Cookies.Add(a);
this.ValidateCode(tmp);
}
私有無效ValidateCode(字串VNum)
{
點陣圖圖像 = null;
圖形g = null;
記憶體流 ms = null;
int gheight = VNum.Length * 12;
Img = 新位圖(高度, 25);
g = Graphics.FromImage(Img);
// 背景顏色
g.Clear(Color.LightSteelBlue);
//文字字體
字型 f = new Font("Arial Black", 10);
//文字顏色
SolidBrush s = new SolidBrush(Color.RoyalBlue);
g.DrawString(VNum, f, s, 3, 3);
ms = 新的 MemoryStream();
Img.Save(ms, ImageFormat.Jpeg);
Response.ClearContent();
Response.ContentType = "圖片/Jpeg";
Response.BinaryWrite(ms.ToArray());
g.Dispose();
Img.Dispose();
響應.End();
}
私有字串 RndNum(int VcodeNum)
{
字串Vchar =「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”;
string[] VcArray = Vchar.Split(new Char[] { ',' });
字串 VNum = "";
整數溫度=-1;
隨機蘭特 = new Random();
for (int i = 1; i < VcodeNum + 1; i++)
{
如果(溫度!= -1)
{
rand = new Random(i * temp * unchecked((int)DateTime.Now.Ticks));
}
int t = rand.Next(35);
if (溫度!= -1 && 溫度 == t)
{
return RndNum(VcodeNum);
}
溫度=t;
VNum += VcArray[t];
}
返回VNum;
}
}
使用方法:
在需要的頁面html裡添加
<img src="identifyingcode.aspx" />
HttpCookieCollection cookies = Request.Cookies;
字串 tmp = cookies["ImageV"].Value;
然後比tmp與取得的較舊驗證碼文字方塊中的值是否相同
來源: http://enuosky.cnblogs.com/archive/2006/05/15/400954.html